Compare commits

..

No commits in common. "dcb8ab569a4054e66fc18b54e265d1810979d2c7" and "d40654a00c14ed6cd9649fec6e60d43498b74ba5" have entirely different histories.

6 changed files with 0 additions and 73 deletions

View File

@ -19,7 +19,6 @@ set(SOURCES
src/env.cpp
src/pwd.cpp
src/grp.cpp
src/locale.cpp
src/sys/stat.cpp
src/sys/mman.cpp
src/sys/wait.cpp

View File

@ -1,18 +0,0 @@
/* bits/locale-cat.h: Locale categories. */
#ifndef _BITS_LOCALE_CAT_H
#define _BITS_LOCALE_CAT_H
enum __libc_locale_category
{
LC_ALL, // Controls all locales.
LC_CTYPE, // Character classification and case conversion.
LC_COLLATE, // Collation order.
LC_MONETARY, // Monetary formatting.
LC_NUMERIC, // Numeric, non-monetary formatting.
LC_TIME, // Date and time formats.
LC_MESSAGES, // Formats of informative and diagnostic messages and interactive responses.
__num_locale_categories,
};
#endif

View File

@ -1,20 +0,0 @@
/* locale.h: Locale category macros. */
#ifndef _LOCALE_H
#define _LOCALE_H
#include <bits/locale-cat.h>
#ifdef __cplusplus
extern "C"
{
#endif
// Query or set the current locale.
char* setlocale(int category, const char* locale);
#ifdef __cplusplus
}
#endif
#endif

View File

@ -31,9 +31,6 @@ typedef struct
#define RAND_MAX 32767
#define EXIT_SUCCESS 0
#define EXIT_FAILURE 1
#ifdef __cplusplus
extern "C"
{
@ -96,9 +93,6 @@ extern "C"
* endptr if nonnull. */
unsigned long strtoul(const char* str, char** endptr, int base);
#define strtoll strtol
#define strtoull strtoul
/* Return the next pseudorandom number. */
int rand();

View File

@ -1,16 +0,0 @@
/* sys/param.h: Old-style BSD macros. */
#ifndef _SYS_PARAM_H
#define _SYS_PARAM_H
#include <limits.h>
#ifndef MIN
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
#endif
#endif

View File

@ -1,12 +0,0 @@
#include <locale.h>
static char s_default_locale[] = "C";
extern "C"
{
char* setlocale(int, const char*)
{
// FIXME: Set the current locale if <locale> is not NULL.
return s_default_locale;
}
}