Include stdint.h because uint32_t is used. Makes the package build on

Linux again.
This commit is contained in:
minskim 2005-03-24 15:37:40 +00:00
parent 327de5a083
commit 6c25e87617

View file

@ -56,8 +56,15 @@
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <errno.h>
#include <fcntl.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>