diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-12-05 09:14:44 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-12-05 09:14:44 +0000 |
commit | ed59ec62717f0f88ed3d32dff6bf15dd59269b91 (patch) | |
tree | 1f83bba313c5a1a8dec8bd4a1368c4b6f5870361 /win32/win32.h | |
parent | 5b3035ed4d02db655cf5d2d62ab1ebb11c131def (diff) | |
download | perl-ed59ec62717f0f88ed3d32dff6bf15dd59269b91.tar.gz |
fix open(FOO, ">&MYSOCK") failure under Windows 9x (problem is
due to the notorious GetFileType() bug in Windows 9x, which fstat()
tickles)
p4raw-id: //depot/perl@7986
Diffstat (limited to 'win32/win32.h')
-rw-r--r-- | win32/win32.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/win32.h b/win32/win32.h index 1640564a65..1040ef1c1a 100644 --- a/win32/win32.h +++ b/win32/win32.h @@ -344,6 +344,7 @@ DllExport void win32_get_child_IO(child_IO_table* ptr); extern FILE * my_fdopen(int, char *); #endif extern int my_fclose(FILE *); +extern int my_fstat(int fd, struct stat *sbufptr); extern int do_aspawn(void *really, void **mark, void **sp); extern int do_spawn(char *cmd); extern int do_spawn_nowait(char *cmd); |