diff options
| author | James Aylett <james@tartarus.org> | 2004-04-01 18:03:26 +0000 |
|---|---|---|
| committer | James Aylett <james@tartarus.org> | 2004-04-01 18:03:26 +0000 |
| commit | 4689106d886c09af3c1cfe4d7b9e430117a9754b (patch) | |
| tree | 8d52556d8e306d82d6319eb8c757567560774fcf | |
| parent | fb0fb710fff3fa2ec17bbb0df34b359ef016ee77 (diff) | |
| download | halibut-4689106d886c09af3c1cfe4d7b9e430117a9754b.zip halibut-4689106d886c09af3c1cfe4d7b9e430117a9754b.tar.gz halibut-4689106d886c09af3c1cfe4d7b9e430117a9754b.tar.bz2 halibut-4689106d886c09af3c1cfe4d7b9e430117a9754b.tar.xz | |
GCC 3.0 doesn't like you not including <string.h> if you use things in it.
We do, so let's.
[originally from svn r4029]
| -rw-r--r-- | halibut.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4,6 +4,7 @@ #include <stdio.h> #include <wchar.h> #include <time.h> +#include <string.h> #ifdef __GNUC__ #define NORETURN __attribute__((__noreturn__)) |