Files
Custom-Operating-System/libs/libcxx/include/cstdlib

27 lines
407 B
Plaintext
Raw Normal View History

2025-02-12 09:54:05 -05:00
#pragma GCC system_header
#ifndef _LIBCXX_CSTDLIB
#define _LIBCXX_CSTDLIB
#include <__config>
#include <stdlib.h>
_LIBCXX_BEGIN_NAMESPACE_STD
using ::abort;
using ::abs;
using ::atoi;
using ::calloc;
using ::exit;
using ::free;
using ::malloc;
using ::posix_openpt;
using ::ptsname;
using ::ptsname_r;
using ::qsort;
using ::realloc;
using ::strtol;
_LIBCXX_END_NAMESPACE_STD
#endif // _LIBCXX_CSTDLIB