Fix __RENAME quoting lossage (don't pass it a quoted string). From

Chris Demetriou <cgd@pa.dec.com>.
This commit is contained in:
thorpej 1997-11-04 23:36:19 +00:00
parent a119d347a5
commit 42066a4aa4
3 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fts.h,v 1.7 1997/10/22 00:53:48 fvdl Exp $ */
/* $NetBSD: fts.h,v 1.8 1997/11/04 23:36:19 thorpej Exp $ */
/*
* Copyright (c) 1989, 1993
@ -135,13 +135,13 @@ FTS *fts_open __P((char * const *, int,
FTSENT *fts_read __P((FTS *));
int fts_set __P((FTS *, FTSENT *, int));
#else
FTSENT *fts_children __P((FTS *, int)) __RENAME("__fts_children13");
int fts_close __P((FTS *)) __RENAME("__fts_close13");
FTSENT *fts_children __P((FTS *, int)) __RENAME(__fts_children13);
int fts_close __P((FTS *)) __RENAME(__fts_close13);
FTS *fts_open __P((char * const *, int,
int (*)(const FTSENT **, const FTSENT **)))
__RENAME("__fts_open13");
FTSENT *fts_read __P((FTS *)) __RENAME("__fts_read13");
int fts_set __P((FTS *, FTSENT *, int)) __RENAME("__fts_set13");
__RENAME(__fts_open13);
FTSENT *fts_read __P((FTS *)) __RENAME(__fts_read13);
int fts_set __P((FTS *, FTSENT *, int)) __RENAME(__fts_set13);
#endif
__END_DECLS

View File

@ -1,4 +1,4 @@
/* $NetBSD: glob.h,v 1.7 1997/10/22 00:53:55 fvdl Exp $ */
/* $NetBSD: glob.h,v 1.8 1997/11/04 23:36:22 thorpej Exp $ */
/*
* Copyright (c) 1989, 1993
@ -96,8 +96,8 @@ int glob __P((const char *, int, int (*)(const char *, int), glob_t *));
void globfree __P((glob_t *));
#else
int glob __P((const char *, int, int (*)(const char *, int), glob_t *))
__RENAME("__glob13");
void globfree __P((glob_t *)) __RENAME("__globfree13");
__RENAME(__glob13);
void globfree __P((glob_t *)) __RENAME(__globfree13);
#endif
__END_DECLS

View File

@ -1,4 +1,4 @@
/* $NetBSD: vis.h,v 1.7 1997/10/22 00:54:01 fvdl Exp $ */
/* $NetBSD: vis.h,v 1.8 1997/11/04 23:36:25 thorpej Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -84,7 +84,7 @@ int strunvis __P((char *, const char *));
int unvis __P((char *, char, int *, int));
int __unvis13 __P((char *, int, int *, int));
#else
int unvis __P((char *, int, int *, int)) __RENAME("__unvis13");
int unvis __P((char *, int, int *, int)) __RENAME(__unvis13);
#endif
__END_DECLS