Files
haiku-beta6/headers/compatibility/bsd/stdlib.h
T

44 lines
798 B
C
Raw Normal View History

/*
* Copyright 2006-2010 Haiku Inc. All Rights Reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _BSD_STDLIB_H_
#define _BSD_STDLIB_H_
#include_next <stdlib.h>
#include <features.h>
#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
#ifdef __cplusplus
extern "C" {
#endif
2007-09-04 12:32:20 +00:00
int daemon(int noChangeDir, int noClose);
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);
2018-02-25 11:28:59 -06:00
int mkstemps(char *templat, int slen);
long long strtonum(const char *numstr, long long minval,
long long maxval, const char **errstrp);
int getloadavg(double array[], int size);
#ifdef __cplusplus
}
#endif
2015-04-16 07:29:58 +02:00
#endif
#endif /* _BSD_STDLIB_H_ */