comparison src/file-io.cc @ 1343:94bedeb289e5

[project @ 1995-09-04 00:29:21 by jwe]
author jwe
date Mon, 04 Sep 1995 00:42:19 +0000
parents e1dbc5585afd
children 5f63d83dd694
comparison
equal deleted inserted replaced
1342:61bb2bdee11e 1343:94bedeb289e5
31 31
32 #ifdef HAVE_CONFIG_H 32 #ifdef HAVE_CONFIG_H
33 #include <config.h> 33 #include <config.h>
34 #endif 34 #endif
35 35
36 #include <cstring>
37 #include <cstdio>
38 #include <cerrno>
39 #include <cstdlib>
40 #include <cctype>
41
36 #include <sys/types.h> 42 #include <sys/types.h>
43 #ifdef HAVE_UNISTD_H
37 #include <unistd.h> 44 #include <unistd.h>
38 #include <string.h> 45 #endif
39 #include <stdio.h>
40 #include <errno.h>
41 #include <stdlib.h>
42 #include <strstream.h>
43 #include <sys/wait.h> 46 #include <sys/wait.h>
44 #include <fcntl.h> 47 #include <fcntl.h>
45 #include <ctype.h> 48
49 #include <strstream.h>
46 50
47 #include <DLList.h> 51 #include <DLList.h>
48 52
49 #include "dMatrix.h" 53 #include "dMatrix.h"
50 54