diff options
| author | venaas <venaas> | 2009-01-07 14:02:24 +0000 |
|---|---|---|
| committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2009-01-07 14:02:24 +0000 |
| commit | 6f3af9861a7eab73df328b6946edd86fdc3b7693 (patch) | |
| tree | a378c699d0c6e0b7a111eebf89cc7a56ce9b272b | |
| parent | 772a55eacedd6a21e484d372c6436d9ef5138934 (diff) | |
minor changes for solaris
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@453 e88ac4ed-0b26-0410-9574-a7f39faa03bf
| -rw-r--r-- | radmsg.c | 4 | ||||
| -rw-r--r-- | tlv11.c | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -6,7 +6,11 @@ * copyright notice and this permission notice appear in all copies. */ +#ifdef SYS_SOLARIS9 +#include <sys/inttypes.h> +#else #include <stdint.h> +#endif #include <stdlib.h> #include <string.h> #include <arpa/inet.h> @@ -6,7 +6,11 @@ * copyright notice and this permission notice appear in all copies. */ +#ifdef SYS_SOLARIS9 +#include <sys/inttypes.h> +#else #include <stdint.h> +#endif #include "list.h" #include "tlv11.h" #include <stdlib.h> |
