diff options
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() |