Avoiding <stdint.h> if not available. Trying to use <inttypes.h> in that case.
This commit is contained in:
@@ -15,7 +15,14 @@
|
||||
#include "util.h"
|
||||
#include "buffer.h"
|
||||
|
||||
#ifdef HAVE_STDINT_H
|
||||
#include <stdint.h>
|
||||
#else
|
||||
#ifdef HAVE_INTTYPES_H
|
||||
#include <inttypes.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include <pthread.h>
|
||||
|
||||
#define BLOCK_SIZE 2048
|
||||
|
Reference in New Issue
Block a user