diff options
author | jbj <devnull@localhost> | 2002-04-10 20:00:40 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-04-10 20:00:40 +0000 |
commit | e5a632b26dc0f8df7f552dcf0a07f703db9fd329 (patch) | |
tree | 0748845b10f4b3c23064bbc6d940091c27659a12 /beecrypt/entropy.c | |
parent | fa1361480f0b9a1154579a21668a249d0bce6126 (diff) | |
download | librpm-tizen-e5a632b26dc0f8df7f552dcf0a07f703db9fd329.tar.gz librpm-tizen-e5a632b26dc0f8df7f552dcf0a07f703db9fd329.tar.bz2 librpm-tizen-e5a632b26dc0f8df7f552dcf0a07f703db9fd329.zip |
- beecrypt: add types.h, eliminate need for config.gnu.h.
CVS patchset: 5386
CVS date: 2002/04/10 20:00:40
Diffstat (limited to 'beecrypt/entropy.c')
-rw-r--r-- | beecrypt/entropy.c | 26 |
1 files changed, 2 insertions, 24 deletions
diff --git a/beecrypt/entropy.c b/beecrypt/entropy.c index 528d9930f..62d90f0e5 100644 --- a/beecrypt/entropy.c +++ b/beecrypt/entropy.c @@ -28,6 +28,7 @@ #define BEECRYPT_DLL_EXPORT +#include "system.h" #include "entropy.h" #include "endianness.h" @@ -39,13 +40,6 @@ # if HAVE_SYS_IOCTL_H # include <sys/ioctl.h> # endif -# if HAVE_SYS_STAT_H -# include <sys/types.h> -# include <sys/stat.h> -# endif -# if HAVE_SYS_TIME_H -# include <sys/time.h> -# endif # if HAVE_SYS_AUDIOIO_H # include <sys/audioio.h> # endif @@ -119,23 +113,7 @@ aio_fsync (int __operation, struct aiocb *__aiocbp) # endif #endif -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_FCNTL_H -# include <fcntl.h> -#endif -#if HAVE_UNISTD_H -# include <unistd.h> -#endif -#if HAVE_STRING_H -# include <string.h> -#endif -#if HAVE_ERRNO_H -# include <errno.h> -#endif - -#include <stdio.h> +#include "debug.h" #if WIN32 static HINSTANCE entropy_instance = (HINSTANCE) 0; |