2006-08-03 21:28:46 +00:00
|
|
|
/*
|
2010-11-03 22:04:50 +00:00
|
|
|
* Copyright 2006-2010 Haiku Inc. All Rights Reserved.
|
2006-08-03 21:28:46 +00:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _BSD_STDLIB_H_
|
|
|
|
#define _BSD_STDLIB_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include_next <stdlib.h>
|
2019-07-20 12:02:02 +02:00
|
|
|
#include <features.h>
|
2006-08-03 21:28:46 +00:00
|
|
|
|
|
|
|
|
2019-07-20 12:02:02 +02:00
|
|
|
#ifdef _DEFAULT_SOURCE
|
2015-04-16 07:29:58 +02:00
|
|
|
|
2017-12-14 08:15:01 +07:00
|
|
|
#include <stdint.h>
|
2015-04-16 07:29:58 +02:00
|
|
|
|
2006-08-03 21:28:46 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2007-09-04 12:32:20 +00:00
|
|
|
int daemon(int noChangeDir, int noClose);
|
2006-08-03 21:28:46 +00:00
|
|
|
const char *getprogname(void);
|
|
|
|
void setprogname(const char *programName);
|
2017-12-14 08:15:01 +07:00
|
|
|
uint32_t arc4random(void);
|
|
|
|
void arc4random_buf(void *buf, size_t nbytes);
|
|
|
|
uint32_t arc4random_uniform(uint32_t upper_bound);
|
2006-08-03 21:28:46 +00:00
|
|
|
|
2018-02-25 11:28:59 -06:00
|
|
|
int mkstemps(char *templat, int slen);
|
|
|
|
|
2024-02-24 16:39:05 +01:00
|
|
|
long long strtonum(const char *numstr, long long minval,
|
|
|
|
long long maxval, const char **errstrp);
|
|
|
|
|
2006-08-03 21:28:46 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-04-16 07:29:58 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2006-08-03 21:28:46 +00:00
|
|
|
#endif /* _BSD_STDLIB_H_ */
|