From 77625ed8eea175bf6fd74c716de52c3c6436796c Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Wed, 17 Dec 2003 05:26:55 +0000 Subject: [PATCH] #include stdlib.h for size_t --- src/flac/string.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/flac/string.h b/src/flac/string.h index b802ec3..a51c3d4 100644 --- a/src/flac/string.h +++ b/src/flac/string.h @@ -19,6 +19,8 @@ #ifndef flac__string_h #define flac__string_h +#include /* for size_t */ + size_t flac__strlcpy(char *dst, const char *src, size_t siz); size_t flac__strlcat(char *dst, const char *src, size_t siz); -- 2.7.4