From 7911be587b8ce80fc3147a9cb25ac4f0dcee99b6 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Fri, 16 Feb 2001 18:55:58 +0000 Subject: [PATCH] Add all necessary includes for these header files. --- ext/standard/php_smart_str.h | 3 +++ ext/standard/php_smart_str_public.h | 2 ++ 2 files changed, 5 insertions(+) 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; -- 2.50.1