Home | History | Annotate | Line # | Download | only in net
Lint_ntohs.c revision 1.3.4.1
      1  1.3.4.1   nathanw /* $NetBSD: Lint_ntohs.c,v 1.3.4.1 2001/10/08 20:20:04 nathanw Exp $ */
      2      1.1       cgd 
      3      1.1       cgd /*
      4      1.1       cgd  * This file placed in the public domain.
      5      1.1       cgd  * Chris Demetriou, November 5, 1997.
      6      1.1       cgd  */
      7      1.1       cgd 
      8      1.1       cgd #include <sys/types.h>
      9      1.2  christos #undef ntohs
     10      1.1       cgd 
     11      1.2  christos /*ARGSUSED*//*NOSTRICT*/
     12  1.3.4.1   nathanw uint16_t
     13      1.1       cgd ntohs(net16)
     14  1.3.4.1   nathanw 	uint16_t net16;
     15      1.1       cgd {
     16      1.1       cgd 	return (0);
     17      1.1       cgd }
     18