diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-17 15:56:09 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-17 15:56:09 +0100 |
commit | 303577df16cf990d1c0cb2c83cd8a954258809ba (patch) | |
tree | 44465262dd4225bb6e4ea01173bc58e072891818 /LibC/locale.h | |
parent | e440c3fa87d69d77c6af390d33f535c67c91f8b9 (diff) | |
download | serenity-303577df16cf990d1c0cb2c83cd8a954258809ba.zip |
Various stubs while trying to get an old coreutils to build.
Diffstat (limited to 'LibC/locale.h')
-rw-r--r-- | LibC/locale.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/LibC/locale.h b/LibC/locale.h new file mode 100644 index 0000000000..d5e4530d09 --- /dev/null +++ b/LibC/locale.h @@ -0,0 +1,15 @@ +#pragma once + +#include <sys/cdefs.h> + +enum { + LC_ALL, + LC_NUMERIC, +}; + +__BEGIN_DECLS + +char* setlocale(int category, const char* locale); + +__END_DECLS + |