Move declaration of closefrom(3) to local extensions.

This commit is contained in:
kleink 2004-06-01 16:10:29 +00:00
parent e7f62cf2e3
commit a95e31fea6

View File

@ -1,4 +1,4 @@
/* $NetBSD: unistd.h,v 1.98 2004/05/31 05:06:51 itojun Exp $ */
/* $NetBSD: unistd.h,v 1.99 2004/06/01 16:10:29 kleink Exp $ */
/*-
* Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
@ -98,7 +98,6 @@ int chown __P((const char *, uid_t, gid_t)) __RENAME(__posix_chown);
int chown __P((const char *, uid_t, gid_t));
#endif /* defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) */
int close __P((int));
int closefrom __P((int));
size_t confstr __P((int, char *, size_t));
#ifndef __CUSERID_DECLARED
#define __CUSERID_DECLARED
@ -303,6 +302,7 @@ ssize_t pwrite __P((int, const void *, size_t, off_t));
*/
#if defined(_NETBSD_SOURCE)
int acct __P((const char *));
int closefrom __P((int));
int des_cipher __P((const char *, char *, long, int));
int des_setkey __P((const char *));
void endusershell __P((void));