1999-10-27 07:42:43 +04:00
|
|
|
/*
|
2003-05-18 18:13:38 +04:00
|
|
|
* Copyright (c) 1999-2003 Damien Miller. All rights reserved.
|
2000-04-03 08:50:43 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2001-02-09 04:55:35 +03:00
|
|
|
|
2003-08-02 17:31:42 +04:00
|
|
|
/* $Id: bsd-misc.h,v 1.9 2003/08/02 13:31:42 dtucker Exp $ */
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-12-29 17:29:35 +03:00
|
|
|
#ifndef _BSD_MISC_H
|
|
|
|
#define _BSD_MISC_H
|
1999-10-27 07:42:43 +04:00
|
|
|
|
1999-10-28 08:12:54 +04:00
|
|
|
#include "config.h"
|
|
|
|
|
2003-05-18 18:13:38 +04:00
|
|
|
char *get_progname(char *);
|
2000-11-17 06:47:20 +03:00
|
|
|
|
2000-11-05 12:08:45 +03:00
|
|
|
#ifndef HAVE_SETSID
|
|
|
|
#define setsid() setpgrp(0, getpid())
|
|
|
|
#endif /* !HAVE_SETSID */
|
|
|
|
|
1999-11-22 08:11:05 +03:00
|
|
|
#ifndef HAVE_SETENV
|
2003-05-18 18:13:38 +04:00
|
|
|
int setenv(const char *, const char *, int);
|
1999-11-22 08:11:05 +03:00
|
|
|
#endif /* !HAVE_SETENV */
|
|
|
|
|
1999-12-30 07:08:44 +03:00
|
|
|
#ifndef HAVE_SETLOGIN
|
2003-05-18 18:13:38 +04:00
|
|
|
int setlogin(const char *);
|
1999-12-30 07:08:44 +03:00
|
|
|
#endif /* !HAVE_SETLOGIN */
|
|
|
|
|
|
|
|
#ifndef HAVE_INNETGR
|
2003-05-18 18:13:38 +04:00
|
|
|
int innetgr(const char *, const char *, const char *, const char *);
|
1999-12-30 07:08:44 +03:00
|
|
|
#endif /* HAVE_INNETGR */
|
|
|
|
|
|
|
|
#if !defined(HAVE_SETEUID) && defined(HAVE_SETREUID)
|
2003-05-18 18:13:38 +04:00
|
|
|
int seteuid(uid_t);
|
1999-12-30 07:08:44 +03:00
|
|
|
#endif /* !defined(HAVE_SETEUID) && defined(HAVE_SETREUID) */
|
|
|
|
|
2001-04-09 18:50:52 +04:00
|
|
|
#if !defined(HAVE_SETEGID) && defined(HAVE_SETRESGID)
|
2003-05-18 18:13:38 +04:00
|
|
|
int setegid(uid_t);
|
2001-04-09 18:50:52 +04:00
|
|
|
#endif /* !defined(HAVE_SETEGID) && defined(HAVE_SETRESGID) */
|
|
|
|
|
2000-08-16 04:35:58 +04:00
|
|
|
#if !defined(HAVE_STRERROR) && defined(HAVE_SYS_ERRLIST) && defined(HAVE_SYS_NERR)
|
2003-05-18 18:13:38 +04:00
|
|
|
const char *strerror(int);
|
2000-08-16 04:35:58 +04:00
|
|
|
#endif
|
2000-07-15 08:59:14 +04:00
|
|
|
|
2001-01-15 05:34:37 +03:00
|
|
|
|
|
|
|
#ifndef HAVE_UTIMES
|
|
|
|
#ifndef HAVE_STRUCT_TIMEVAL
|
|
|
|
struct timeval {
|
|
|
|
long tv_sec;
|
|
|
|
long tv_usec;
|
|
|
|
}
|
|
|
|
#endif /* HAVE_STRUCT_TIMEVAL */
|
|
|
|
|
2003-05-18 18:13:38 +04:00
|
|
|
int utimes(char *, struct timeval *);
|
2001-01-15 05:34:37 +03:00
|
|
|
#endif /* HAVE_UTIMES */
|
|
|
|
|
2002-05-08 06:51:31 +04:00
|
|
|
#ifndef HAVE_TRUNCATE
|
2003-05-18 18:13:38 +04:00
|
|
|
int truncate (const char *, off_t);
|
2002-05-08 06:51:31 +04:00
|
|
|
#endif /* HAVE_TRUNCATE */
|
2001-01-15 05:34:37 +03:00
|
|
|
|
2002-06-12 20:57:14 +04:00
|
|
|
#if !defined(HAVE_SETGROUPS) && defined(SETGROUPS_NOOP)
|
2003-05-18 18:13:38 +04:00
|
|
|
int setgroups(size_t, const gid_t *);
|
2002-06-12 20:57:14 +04:00
|
|
|
#endif
|
|
|
|
|
2003-03-18 21:21:40 +03:00
|
|
|
#if !defined(HAVE_NANOSLEEP) && !defined(HAVE_NSLEEP)
|
|
|
|
#ifndef HAVE_STRUCT_TIMESPEC
|
|
|
|
struct timespec {
|
|
|
|
time_t tv_sec;
|
|
|
|
long tv_nsec;
|
|
|
|
};
|
|
|
|
#endif
|
2003-05-18 18:13:38 +04:00
|
|
|
int nanosleep(const struct timespec *, struct timespec *);
|
2003-03-18 21:21:40 +03:00
|
|
|
#endif
|
2002-06-12 20:57:14 +04:00
|
|
|
|
2003-08-02 17:31:42 +04:00
|
|
|
#ifndef HAVE_TCGETPGRP
|
|
|
|
pid_t tcgetpgrp(int);
|
|
|
|
#endif /* HAVE_TCGETPGRP */
|
|
|
|
|
1999-12-29 17:29:35 +03:00
|
|
|
#endif /* _BSD_MISC_H */
|