diff options
| author | Akihiko Odaki <[email protected]> | 2016-10-11 23:06:48 +0900 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2016-10-12 15:43:14 +0200 |
| commit | 60b2bf1b08c621492410b24e469b2bdf58d167d5 (patch) | |
| tree | 9a9f16d5a686b42469c190a7d3b0bd245344dc48 /lib/xstrndup.c | |
| parent | 7bf4b63a4980788e6c1969cae02f0483e79c069f (diff) | |
lib: Provide MAX and MIN in system.h
This change also creates a new header file libeu.h to provide the
prototypes for the function of libeu. That hides the definition of function
crc32, which can conflict with zlib, from libelf. It also prevents mistakes
to refer those functions from a component which doesn't link with libeu,
such as libelf.
Signed-off-by: Akihiko Odaki <[email protected]>
Diffstat (limited to 'lib/xstrndup.c')
| -rw-r--r-- | lib/xstrndup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/xstrndup.c b/lib/xstrndup.c index 92b79c17..d43e3b9e 100644 --- a/lib/xstrndup.c +++ b/lib/xstrndup.c @@ -30,8 +30,9 @@ # include <config.h> #endif +#include <stdint.h> #include <string.h> -#include "system.h" +#include "libeu.h" /* Return a newly allocated copy of STRING. */ |
