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:25:02 +00:00
parent a3c568f9db
commit a119d347a5
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: mman.h,v 1.15 1997/10/22 00:51:52 fvdl Exp $ */
/* $NetBSD: mman.h,v 1.16 1997/11/04 23:25:02 thorpej Exp $ */
/*-
* Copyright (c) 1982, 1986, 1993
@ -99,7 +99,7 @@ int mprotect __P((void *, size_t, int));
int msync __P((void *, size_t));
int __msync13 __P((void *, size_t, int));
#else
int msync __P((void *, size_t, int)) __RENAME("__msync13");
int msync __P((void *, size_t, int)) __RENAME(__msync13);
#endif
int mlock __P((void *, size_t));
int munlock __P((void *, size_t));

View File

@ -1,4 +1,4 @@
/* $NetBSD: stat.h,v 1.28 1997/11/02 17:16:51 kleink Exp $ */
/* $NetBSD: stat.h,v 1.29 1997/11/04 23:25:05 thorpej Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@ -223,8 +223,8 @@ int fstat __P((int, struct stat12 *));
int __stat13 __P((const char *, struct stat *));
int __fstat13 __P((int, struct stat *));
#else
int stat __P((const char *, struct stat *)) __RENAME("__stat13");
int fstat __P((int, struct stat *)) __RENAME("__fstat13");
int stat __P((const char *, struct stat *)) __RENAME(__stat13);
int fstat __P((int, struct stat *)) __RENAME(__fstat13);
#endif
mode_t umask __P((mode_t));
#ifndef _POSIX_SOURCE
@ -237,7 +237,7 @@ int mknod __P((const char *, mode_t, dev_t));
int lstat __P((const char *, struct stat12 *));
int __lstat13 __P((const char *, struct stat *));
#else
int lstat __P((const char *, struct stat *)) __RENAME("__lstat13");
int lstat __P((const char *, struct stat *)) __RENAME(__lstat13);
#endif
#endif