From: Sebastian Hammer Date: Mon, 27 Mar 1995 15:01:44 +0000 (+0000) Subject: Added include of sys/types to further portability X-Git-Tag: YAZ.1.8~1098 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=441b13f600a164f373f19bba4b574527d13689a1 Added include of sys/types to further portability --- diff --git a/odr/ber_int.c b/odr/ber_int.c index e8e50cf..4f036c4 100644 --- a/odr/ber_int.c +++ b/odr/ber_int.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: ber_int.c,v $ - * Revision 1.4 1995-03-08 12:12:07 quinn + * Revision 1.5 1995-03-27 15:01:44 quinn + * Added include of sys/types to further portability + * + * Revision 1.4 1995/03/08 12:12:07 quinn * Added better error checking. * * Revision 1.3 1995/02/09 15:51:46 quinn @@ -19,7 +22,8 @@ */ #include -#include +#include +#include /* for htons... */ #include static int ber_encinteger(unsigned char *buf, int val, int maxlen);