1/*
2 * Copyright 2013, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _LIBROOT_STDLIB_PRIVATE_H
6#define _LIBROOT_STDLIB_PRIVATE_H
7
8
9#include <sys/cdefs.h>
10#include <sys/types.h>
11
12
13__BEGIN_DECLS
14
15
16ssize_t	__getenv_reentrant(const char* name, char* buffer,
17			size_t bufferSize);
18
19
20__END_DECLS
21
22
23#endif	/* _LIBROOT_STDLIB_PRIVATE_H */
24