From: Martin Mares Date: Mon, 29 Mar 1999 19:14:43 +0000 (+0000) Subject: Moved all system-dependent #include's containing endianity conversion X-Git-Tag: v1.2.0~1644 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f54801ffedf3d6342b37c1560502bfc24e7fe64a;p=thirdparty%2Fbird.git Moved all system-dependent #include's containing endianity conversion functions to sysdep header endian.h. --- diff --git a/lib/ipv4.h b/lib/ipv4.h index 4ae3e952a..d136536c7 100644 --- a/lib/ipv4.h +++ b/lib/ipv4.h @@ -1,7 +1,7 @@ /* * BIRD -- IP Addresses et Cetera for IPv4 * - * (c) 1998 Martin Mares + * (c) 1998--1999 Martin Mares * * Can be freely distributed and used under the terms of the GNU GPL. */ @@ -9,8 +9,7 @@ #ifndef _BIRD_IPV4_H_ #define _BIRD_IPV4_H_ -#include - +#include "lib/endian.h" #include "lib/bitops.h" #ifdef DEBUGGING diff --git a/sysdep/unix/Modules b/sysdep/unix/Modules index bb0385d5c..7d403dd9a 100644 --- a/sysdep/unix/Modules +++ b/sysdep/unix/Modules @@ -3,6 +3,7 @@ main.c timer.h io.c unix.h +endian.h krt.c krt.h diff --git a/sysdep/unix/endian.h b/sysdep/unix/endian.h new file mode 100644 index 000000000..58c746f01 --- /dev/null +++ b/sysdep/unix/endian.h @@ -0,0 +1,17 @@ +/* + * BIRD -- Endianity Conversion + * + * (c) 1999 Martin Mares + * + * Can be freely distributed and used under the terms of the GNU GPL. + */ + +#ifndef _BIRD_ENDIAN_H_ +#define _BIRD_ENDIAN_H_ + +/* hton[sl] and ntoh[sl] are defined here */ + +#include +#include + +#endif