summaryrefslogtreecommitdiff
path: root/main/php_streams.h
diff options
context:
space:
mode:
authorAnantha Kesari H Y <hyanantha@php.net>2002-09-05 14:25:07 +0000
committerAnantha Kesari H Y <hyanantha@php.net>2002-09-05 14:25:07 +0000
commit8b8f1e05900875969a171baae9bf61a5871b14e1 (patch)
treeb48b1d843d786b2b1ada613a5b75a1218350c738 /main/php_streams.h
parenteb58557e1cc244218c867437d7e018eb6a64e553 (diff)
downloadphp-git-8b8f1e05900875969a171baae9bf61a5871b14e1.tar.gz
NetWare related additions/modifications
Diffstat (limited to 'main/php_streams.h')
-rwxr-xr-xmain/php_streams.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/main/php_streams.h b/main/php_streams.h
index 9745105d65..0bbd9d954e 100755
--- a/main/php_streams.h
+++ b/main/php_streams.h
@@ -101,7 +101,11 @@ typedef void (*php_stream_notification_func)(php_stream_context *context,
void * ptr TSRMLS_DC);
typedef struct _php_stream_statbuf {
+#if defined(NETWARE) && defined(CLIB_STAT_PATCH)
+ struct stat_libc sb; /* regular info */
+#else
struct stat sb; /* regular info */
+#endif
/* extended info to go here some day: content-type etc. etc. */
} php_stream_statbuf;