Home | History | Annotate | Line # | Download | only in net
Lint_htonl.c revision 1.4.112.1
      1  1.4.112.1  perseant /* $NetBSD: Lint_htonl.c,v 1.4.112.1 2025/08/02 05:54:39 perseant 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 htonl
     10        1.1       cgd 
     11        1.1       cgd /*ARGSUSED*/
     12        1.4    itojun uint32_t
     13  1.4.112.1  perseant htonl(uint32_t host32)
     14        1.1       cgd {
     15  1.4.112.1  perseant 	return 0;
     16        1.1       cgd }
     17