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>
|
2019-07-20 13:02:02 +03:00
|
|
|
#include <features.h>
|
2006-08-04 01:28:46 +04:00
|
|
|
|
|
|
|
|
2019-07-20 13:02:02 +03:00
|
|
|
#ifdef _DEFAULT_SOURCE
|
2015-04-16 08:29:58 +03:00
|
|
|
|
2017-12-14 04:15:01 +03:00
|
|
|
#include <stdint.h>
|
2015-04-16 08:29:58 +03:00
|
|
|
|
2006-08-04 01:28:46 +04:00
|
|
|
#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);
|
2017-12-14 04:15:01 +03:00
|
|
|
uint32_t arc4random(void);
|
|
|
|
void arc4random_buf(void *buf, size_t nbytes);
|
|
|
|
uint32_t arc4random_uniform(uint32_t upper_bound);
|
2006-08-04 01:28:46 +04:00
|
|
|
|
2018-02-25 20:28:59 +03:00
|
|
|
int mkstemps(char *templat, int slen);
|
|
|
|
|
2024-02-24 18:39:05 +03:00
|
|
|
long long strtonum(const char *numstr, long long minval,
|
|
|
|
long long maxval, const char **errstrp);
|
|
|
|
|
2006-08-04 01:28:46 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-04-16 08:29:58 +03:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2006-08-04 01:28:46 +04:00
|
|
|
#endif /* _BSD_STDLIB_H_ */
|