2006-08-04 01:28:46 +04:00
|
|
|
/*
|
2010-11-04 01:04:50 +03:00
|
|
|
* Copyright 2006-2010 Haiku Inc. All Rights Reserved.
|
2006-08-04 01:28:46 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _BSD_STDLIB_H_
|
|
|
|
#define _BSD_STDLIB_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include_next <stdlib.h>
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2007-09-04 16:32:20 +04:00
|
|
|
int daemon(int noChangeDir, int noClose);
|
2006-08-04 01:28:46 +04:00
|
|
|
const char *getprogname(void);
|
|
|
|
void setprogname(const char *programName);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _BSD_STDLIB_H_ */
|