diff options
author | Anantha Kesari H Y <hyanantha@php.net> | 2005-02-25 05:57:41 +0000 |
---|---|---|
committer | Anantha Kesari H Y <hyanantha@php.net> | 2005-02-25 05:57:41 +0000 |
commit | 147dab1b577fc349d54e06bf069f3236ea8f80cd (patch) | |
tree | fb816e40ee5150aab6bd11a89bed1130164817fe /win32/sendmail.c | |
parent | 896efd3a139390e0474cd8ae87093e7708492736 (diff) | |
download | php-git-147dab1b577fc349d54e06bf069f3236ea8f80cd.tar.gz |
time.h is available in NetWare LibC.
path sperator has been changed from \ to / while including netware\sendmail_nw.h
Diffstat (limited to 'win32/sendmail.c')
-rw-r--r-- | win32/sendmail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/sendmail.c b/win32/sendmail.c index d5b1527fbd..cb7f78a336 100644 --- a/win32/sendmail.c +++ b/win32/sendmail.c @@ -24,10 +24,10 @@ #include <stdlib.h> #ifndef NETWARE #include <winsock2.h> +#include "time.h" #else /* NETWARE */ -#include <netware\sendmail_nw.h> +#include <netware/sendmail_nw.h> #endif /* NETWARE */ -#include "time.h" #include <string.h> #include <math.h> #ifndef NETWARE |