diff options
author | Larry Wall <lwall@netlabs.com> | 1991-06-06 23:27:54 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1991-06-06 23:27:54 +0000 |
commit | 2b317908ea5309ab202d1cdbadccfdf42d10e2b1 (patch) | |
tree | f523f01a4205f56f5435a39161acb4020ad5bc5b /msdos | |
parent | 132b68a5c516d31aa5abdbca3bb36ded2c13b4cc (diff) | |
download | perl-2b317908ea5309ab202d1cdbadccfdf42d10e2b1.tar.gz |
perl 4.0 patch 5: patch #4, continued
See patch #4.
Diffstat (limited to 'msdos')
-rw-r--r-- | msdos/chdir.c | 4 | ||||
-rw-r--r-- | msdos/config.h | 18 |
2 files changed, 19 insertions, 3 deletions
diff --git a/msdos/chdir.c b/msdos/chdir.c index 6954f9853e..b650eb0a90 100644 --- a/msdos/chdir.c +++ b/msdos/chdir.c @@ -1,8 +1,8 @@ /* * (C) Copyright 1990, 1991 Tom Dinger * - * You may distribute under the terms of the GNU General Public License - * as specified in the README file that comes with the perl 4.0 kit. + * You may distribute under the terms of either the GNU General Public + * License or the Artistic License, as specified in the README file. * */ diff --git a/msdos/config.h b/msdos/config.h index f6998ea54f..d030c5835a 100644 --- a/msdos/config.h +++ b/msdos/config.h @@ -43,7 +43,7 @@ /* BIN * This symbol holds the name of the directory in which the user wants - * to put publicly executable images for the package in question. It + * to keep publicly executable images for the package in question. It * is most often a local directory such as /usr/local/bin. */ #define BIN "/usr/local/bin" /**/ @@ -590,11 +590,23 @@ */ #define GIDTYPE int /**/ +/* GROUPSTYPE + * This symbol has a value like gid_t, int, ushort, or whatever type is + * used in the return value of getgroups(). + */ +#define GROUPSTYPE int /**/ + /* I_FCNTL * This manifest constant tells the C program to include <fcntl.h>. */ #define I_FCNTL /**/ +/* I_GDBM + * This symbol, if defined, indicates that gdbm.h exists and should + * be included. + */ +/*#undef I_GDBM /**/ + /* I_GRP * This symbol, if defined, indicates to the C program that it should * include grp.h. @@ -733,6 +745,10 @@ /*#undef I_MY_DIR /**/ /*#undef DIRNAMLEN /**/ +/* MALLOCPTRTYPE + * This symbol defines the kind of ptr returned by malloc and realloc. + */ +#define MALLOCPTRTYPE void /**/ /* RANDBITS * This symbol contains the number of bits of random number the rand() |