From: Sascha Schumann Date: Fri, 16 Feb 2001 18:55:58 +0000 (+0000) Subject: Add all necessary includes for these header files. X-Git-Tag: php-4.0.5RC1~267 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7911be587b8ce80fc3147a9cb25ac4f0dcee99b6;p=php Add all necessary includes for these header files. --- diff --git a/ext/standard/php_smart_str.h b/ext/standard/php_smart_str.h index fce92af818..a489fab0bc 100644 --- a/ext/standard/php_smart_str.h +++ b/ext/standard/php_smart_str.h @@ -21,6 +21,9 @@ #include "php_smart_str_public.h" +#include +#include + #define smart_str_0(x) ((x)->c[(x)->len] = '\0') #define smart_str_alloc(d,n,what) {\ diff --git a/ext/standard/php_smart_str_public.h b/ext/standard/php_smart_str_public.h index d561582369..4d448be312 100644 --- a/ext/standard/php_smart_str_public.h +++ b/ext/standard/php_smart_str_public.h @@ -19,6 +19,8 @@ #ifndef PHP_SMART_STR_PUBLIC_H #define PHP_SMART_STR_PUBLIC_H +#include + typedef struct { char *c; size_t len;