From 4721bd0841e756ddf3eda7c7cf371bc77023b81f Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 5 Nov 2003 23:56:48 +0000 Subject: [PATCH] Remove named arguments in the varsym prototypes which conflict with not very well thought out #define's made in the colldef source. --- include/unistd.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/unistd.h b/include/unistd.h index aedcbedc13..622c94eda7 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -32,7 +32,7 @@ * * @(#)unistd.h 8.12 (Berkeley) 4/27/95 * $FreeBSD: src/include/unistd.h,v 1.35.2.10 2002/04/15 12:52:28 nectar Exp $ - * $DragonFly: src/include/unistd.h,v 1.3 2003/11/05 23:29:35 dillon Exp $ + * $DragonFly: src/include/unistd.h,v 1.4 2003/11/05 23:56:48 dillon Exp $ */ #ifndef _UNISTD_H_ @@ -222,8 +222,8 @@ int unwhiteout __P((const char *)); int usleep __P((unsigned int)); void *valloc __P((size_t)); /* obsoleted by malloc() */ pid_t vfork __P((void)); -int varsym_set(int level, const char *name, const char *data); -int varsym_get(int mask, const char *wild, char *buf, int maxbufsize); +int varsym_set(int, const char *, const char *); +int varsym_get(int, const char *, char *, int); extern char *suboptarg; /* getsubopt(3) external variable */ int getsubopt __P((char **, char * const *, char **)); -- 2.32.0