Home | History | Annotate | Line # | Download | only in gen
Lint_bswap16.c revision 1.2
      1 /*      $NetBSD: */
      2 /* Written by Manuel Bouyer. Public Domain */
      3 
      4 #include <sys/types.h>
      5 
      6 /*ARGSUSED*/
      7 /*LINTED prototype mismatch */
      8 u_int16_t
      9 bswap16(b16)
     10 	u_int16_t b16;
     11 {
     12 	return 0;
     13 }
     14