From 42c9f525369ba06742d53d7a89ad00153b317de6 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Mon, 13 Feb 2006 08:14:12 +0000 Subject: Add files for IMA. Yes, I know it's a hack and no, I won't split the affected files --- libc/stdlib/__cxa_atexit.c | 8 ++++++++ libc/stdlib/__cxa_finalize.c | 8 ++++++++ libc/stdlib/__exit_handler.c | 8 ++++++++ libc/stdlib/__fp_range_check.c | 8 ++++++++ libc/stdlib/__strtofpmax.c | 8 ++++++++ libc/stdlib/__strtofpmax_l.c | 9 +++++++++ libc/stdlib/__wcstofpmax.c | 8 ++++++++ libc/stdlib/__wcstofpmax_l.c | 9 +++++++++ libc/stdlib/_stdlib_mb_cur_max.c | 7 +++++++ libc/stdlib/_stdlib_strto_l.c | 7 +++++++ libc/stdlib/_stdlib_strto_l_l.c | 8 ++++++++ libc/stdlib/_stdlib_strto_ll.c | 7 +++++++ libc/stdlib/_stdlib_strto_ll_l.c | 8 ++++++++ libc/stdlib/_stdlib_wcsto_l.c | 7 +++++++ libc/stdlib/_stdlib_wcsto_l_l.c | 8 ++++++++ libc/stdlib/_stdlib_wcsto_ll.c | 7 +++++++ libc/stdlib/_stdlib_wcsto_ll_l.c | 8 ++++++++ libc/stdlib/abs.c | 7 +++++++ libc/stdlib/atexit.c | 8 ++++++++ libc/stdlib/atof.c | 7 +++++++ libc/stdlib/atoi.c | 7 +++++++ libc/stdlib/atol.c | 7 +++++++ libc/stdlib/atoll.c | 7 +++++++ libc/stdlib/bsearch.c | 7 +++++++ libc/stdlib/exit.c | 8 ++++++++ libc/stdlib/labs.c | 7 +++++++ libc/stdlib/llabs.c | 7 +++++++ libc/stdlib/malloc-simple/calloc.c | 8 ++++++++ libc/stdlib/malloc-simple/free.c | 8 ++++++++ libc/stdlib/malloc-simple/malloc.c | 8 ++++++++ libc/stdlib/malloc-simple/memalign.c | 8 ++++++++ libc/stdlib/malloc-simple/realloc.c | 8 ++++++++ libc/stdlib/mblen.c | 7 +++++++ libc/stdlib/mbstowcs.c | 7 +++++++ libc/stdlib/mbtowc.c | 7 +++++++ libc/stdlib/old_atexit.c | 8 ++++++++ libc/stdlib/on_exit.c | 8 ++++++++ libc/stdlib/qsort.c | 7 +++++++ libc/stdlib/strtod.c | 8 ++++++++ libc/stdlib/strtod_l.c | 9 +++++++++ libc/stdlib/strtof.c | 8 ++++++++ libc/stdlib/strtof_l.c | 9 +++++++++ libc/stdlib/strtol.c | 7 +++++++ libc/stdlib/strtol_l.c | 8 ++++++++ libc/stdlib/strtold.c | 8 ++++++++ libc/stdlib/strtold_l.c | 9 +++++++++ libc/stdlib/strtoll.c | 7 +++++++ libc/stdlib/strtoll_l.c | 8 ++++++++ libc/stdlib/strtoul.c | 7 +++++++ libc/stdlib/strtoul_l.c | 8 ++++++++ libc/stdlib/strtoull.c | 7 +++++++ libc/stdlib/strtoull_l.c | 8 ++++++++ libc/stdlib/wcstod.c | 8 ++++++++ libc/stdlib/wcstod_l.c | 9 +++++++++ libc/stdlib/wcstof.c | 8 ++++++++ libc/stdlib/wcstof_l.c | 9 +++++++++ libc/stdlib/wcstol.c | 7 +++++++ libc/stdlib/wcstol_l.c | 8 ++++++++ libc/stdlib/wcstold.c | 8 ++++++++ libc/stdlib/wcstold_l.c | 9 +++++++++ libc/stdlib/wcstoll.c | 7 +++++++ libc/stdlib/wcstoll_l.c | 8 ++++++++ libc/stdlib/wcstombs.c | 7 +++++++ libc/stdlib/wcstoul.c | 7 +++++++ libc/stdlib/wcstoul_l.c | 8 ++++++++ libc/stdlib/wcstoull.c | 7 +++++++ libc/stdlib/wcstoull_l.c | 8 ++++++++ libc/stdlib/wctomb.c | 7 +++++++ 68 files changed, 525 insertions(+) create mode 100644 libc/stdlib/__cxa_atexit.c create mode 100644 libc/stdlib/__cxa_finalize.c create mode 100644 libc/stdlib/__exit_handler.c create mode 100644 libc/stdlib/__fp_range_check.c create mode 100644 libc/stdlib/__strtofpmax.c create mode 100644 libc/stdlib/__strtofpmax_l.c create mode 100644 libc/stdlib/__wcstofpmax.c create mode 100644 libc/stdlib/__wcstofpmax_l.c create mode 100644 libc/stdlib/_stdlib_mb_cur_max.c create mode 100644 libc/stdlib/_stdlib_strto_l.c create mode 100644 libc/stdlib/_stdlib_strto_l_l.c create mode 100644 libc/stdlib/_stdlib_strto_ll.c create mode 100644 libc/stdlib/_stdlib_strto_ll_l.c create mode 100644 libc/stdlib/_stdlib_wcsto_l.c create mode 100644 libc/stdlib/_stdlib_wcsto_l_l.c create mode 100644 libc/stdlib/_stdlib_wcsto_ll.c create mode 100644 libc/stdlib/_stdlib_wcsto_ll_l.c create mode 100644 libc/stdlib/abs.c create mode 100644 libc/stdlib/atexit.c create mode 100644 libc/stdlib/atof.c create mode 100644 libc/stdlib/atoi.c create mode 100644 libc/stdlib/atol.c create mode 100644 libc/stdlib/atoll.c create mode 100644 libc/stdlib/bsearch.c create mode 100644 libc/stdlib/exit.c create mode 100644 libc/stdlib/labs.c create mode 100644 libc/stdlib/llabs.c create mode 100644 libc/stdlib/malloc-simple/calloc.c create mode 100644 libc/stdlib/malloc-simple/free.c create mode 100644 libc/stdlib/malloc-simple/malloc.c create mode 100644 libc/stdlib/malloc-simple/memalign.c create mode 100644 libc/stdlib/malloc-simple/realloc.c create mode 100644 libc/stdlib/mblen.c create mode 100644 libc/stdlib/mbstowcs.c create mode 100644 libc/stdlib/mbtowc.c create mode 100644 libc/stdlib/old_atexit.c create mode 100644 libc/stdlib/on_exit.c create mode 100644 libc/stdlib/qsort.c create mode 100644 libc/stdlib/strtod.c create mode 100644 libc/stdlib/strtod_l.c create mode 100644 libc/stdlib/strtof.c create mode 100644 libc/stdlib/strtof_l.c create mode 100644 libc/stdlib/strtol.c create mode 100644 libc/stdlib/strtol_l.c create mode 100644 libc/stdlib/strtold.c create mode 100644 libc/stdlib/strtold_l.c create mode 100644 libc/stdlib/strtoll.c create mode 100644 libc/stdlib/strtoll_l.c create mode 100644 libc/stdlib/strtoul.c create mode 100644 libc/stdlib/strtoul_l.c create mode 100644 libc/stdlib/strtoull.c create mode 100644 libc/stdlib/strtoull_l.c create mode 100644 libc/stdlib/wcstod.c create mode 100644 libc/stdlib/wcstod_l.c create mode 100644 libc/stdlib/wcstof.c create mode 100644 libc/stdlib/wcstof_l.c create mode 100644 libc/stdlib/wcstol.c create mode 100644 libc/stdlib/wcstol_l.c create mode 100644 libc/stdlib/wcstold.c create mode 100644 libc/stdlib/wcstold_l.c create mode 100644 libc/stdlib/wcstoll.c create mode 100644 libc/stdlib/wcstoll_l.c create mode 100644 libc/stdlib/wcstombs.c create mode 100644 libc/stdlib/wcstoul.c create mode 100644 libc/stdlib/wcstoul_l.c create mode 100644 libc/stdlib/wcstoull.c create mode 100644 libc/stdlib/wcstoull_l.c create mode 100644 libc/stdlib/wctomb.c (limited to 'libc/stdlib') diff --git a/libc/stdlib/__cxa_atexit.c b/libc/stdlib/__cxa_atexit.c new file mode 100644 index 000000000..fbf06e5a7 --- /dev/null +++ b/libc/stdlib/__cxa_atexit.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L___cxa_atexit +#include "_atexit.c" diff --git a/libc/stdlib/__cxa_finalize.c b/libc/stdlib/__cxa_finalize.c new file mode 100644 index 000000000..4a91626bd --- /dev/null +++ b/libc/stdlib/__cxa_finalize.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L___cxa_finalize +#include "_atexit.c" diff --git a/libc/stdlib/__exit_handler.c b/libc/stdlib/__exit_handler.c new file mode 100644 index 000000000..ae4ff84be --- /dev/null +++ b/libc/stdlib/__exit_handler.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L___exit_handler +#include "_atexit.c" diff --git a/libc/stdlib/__fp_range_check.c b/libc/stdlib/__fp_range_check.c new file mode 100644 index 000000000..9c60972ad --- /dev/null +++ b/libc/stdlib/__fp_range_check.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L___fp_range_check +#include "_strtod.c" diff --git a/libc/stdlib/__strtofpmax.c b/libc/stdlib/__strtofpmax.c new file mode 100644 index 000000000..6b01aca0f --- /dev/null +++ b/libc/stdlib/__strtofpmax.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L___strtofpmax +#include "_strtod.c" diff --git a/libc/stdlib/__strtofpmax_l.c b/libc/stdlib/__strtofpmax_l.c new file mode 100644 index 000000000..a6141323e --- /dev/null +++ b/libc/stdlib/__strtofpmax_l.c @@ -0,0 +1,9 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L___strtofpmax_l +#define __UCLIBC_DO_XLOCALE +#include "_strtod.c" diff --git a/libc/stdlib/__wcstofpmax.c b/libc/stdlib/__wcstofpmax.c new file mode 100644 index 000000000..3c3fdccee --- /dev/null +++ b/libc/stdlib/__wcstofpmax.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L___wcstofpmax +#include "_strtod.c" diff --git a/libc/stdlib/__wcstofpmax_l.c b/libc/stdlib/__wcstofpmax_l.c new file mode 100644 index 000000000..909b7204d --- /dev/null +++ b/libc/stdlib/__wcstofpmax_l.c @@ -0,0 +1,9 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L___wcstofpmax_l +#define __UCLIBC_DO_XLOCALE +#include "_strtod.c" diff --git a/libc/stdlib/_stdlib_mb_cur_max.c b/libc/stdlib/_stdlib_mb_cur_max.c new file mode 100644 index 000000000..b87f6094b --- /dev/null +++ b/libc/stdlib/_stdlib_mb_cur_max.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L__stdlib_mb_cur_max +#include "stdlib.c" diff --git a/libc/stdlib/_stdlib_strto_l.c b/libc/stdlib/_stdlib_strto_l.c new file mode 100644 index 000000000..4dfa03785 --- /dev/null +++ b/libc/stdlib/_stdlib_strto_l.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L__stdlib_strto_l +#include "stdlib.c" diff --git a/libc/stdlib/_stdlib_strto_l_l.c b/libc/stdlib/_stdlib_strto_l_l.c new file mode 100644 index 000000000..1692f0cf2 --- /dev/null +++ b/libc/stdlib/_stdlib_strto_l_l.c @@ -0,0 +1,8 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L__stdlib_strto_l_l +#define __UCLIBC_DO_XLOCALE +#include "stdlib.c" diff --git a/libc/stdlib/_stdlib_strto_ll.c b/libc/stdlib/_stdlib_strto_ll.c new file mode 100644 index 000000000..ce79598b4 --- /dev/null +++ b/libc/stdlib/_stdlib_strto_ll.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L__stdlib_strto_ll +#include "stdlib.c" diff --git a/libc/stdlib/_stdlib_strto_ll_l.c b/libc/stdlib/_stdlib_strto_ll_l.c new file mode 100644 index 000000000..b5fb11171 --- /dev/null +++ b/libc/stdlib/_stdlib_strto_ll_l.c @@ -0,0 +1,8 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L__stdlib_strto_ll_l +#define __UCLIBC_DO_XLOCALE +#include "stdlib.c" diff --git a/libc/stdlib/_stdlib_wcsto_l.c b/libc/stdlib/_stdlib_wcsto_l.c new file mode 100644 index 000000000..d05a20786 --- /dev/null +++ b/libc/stdlib/_stdlib_wcsto_l.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L__stdlib_wcsto_l +#include "stdlib.c" diff --git a/libc/stdlib/_stdlib_wcsto_l_l.c b/libc/stdlib/_stdlib_wcsto_l_l.c new file mode 100644 index 000000000..26ea5a704 --- /dev/null +++ b/libc/stdlib/_stdlib_wcsto_l_l.c @@ -0,0 +1,8 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L__stdlib_wcsto_l_l +#define __UCLIBC_DO_XLOCALE +#include "stdlib.c" diff --git a/libc/stdlib/_stdlib_wcsto_ll.c b/libc/stdlib/_stdlib_wcsto_ll.c new file mode 100644 index 000000000..e67a57739 --- /dev/null +++ b/libc/stdlib/_stdlib_wcsto_ll.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L__stdlib_wcsto_ll +#include "stdlib.c" diff --git a/libc/stdlib/_stdlib_wcsto_ll_l.c b/libc/stdlib/_stdlib_wcsto_ll_l.c new file mode 100644 index 000000000..9d6471282 --- /dev/null +++ b/libc/stdlib/_stdlib_wcsto_ll_l.c @@ -0,0 +1,8 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L__stdlib_wcsto_ll_l +#define __UCLIBC_DO_XLOCALE +#include "stdlib.c" diff --git a/libc/stdlib/abs.c b/libc/stdlib/abs.c new file mode 100644 index 000000000..540c020ec --- /dev/null +++ b/libc/stdlib/abs.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_abs +#include "stdlib.c" diff --git a/libc/stdlib/atexit.c b/libc/stdlib/atexit.c new file mode 100644 index 000000000..158869e77 --- /dev/null +++ b/libc/stdlib/atexit.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_atexit +#include "_atexit.c" diff --git a/libc/stdlib/atof.c b/libc/stdlib/atof.c new file mode 100644 index 000000000..2fdd75cda --- /dev/null +++ b/libc/stdlib/atof.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_atof +#include "stdlib.c" diff --git a/libc/stdlib/atoi.c b/libc/stdlib/atoi.c new file mode 100644 index 000000000..61562bbb2 --- /dev/null +++ b/libc/stdlib/atoi.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_atoi +#include "stdlib.c" diff --git a/libc/stdlib/atol.c b/libc/stdlib/atol.c new file mode 100644 index 000000000..3e5772085 --- /dev/null +++ b/libc/stdlib/atol.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_atol +#include "stdlib.c" diff --git a/libc/stdlib/atoll.c b/libc/stdlib/atoll.c new file mode 100644 index 000000000..f6b04a66c --- /dev/null +++ b/libc/stdlib/atoll.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_atoll +#include "stdlib.c" diff --git a/libc/stdlib/bsearch.c b/libc/stdlib/bsearch.c new file mode 100644 index 000000000..4feceefd3 --- /dev/null +++ b/libc/stdlib/bsearch.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_bsearch +#include "stdlib.c" diff --git a/libc/stdlib/exit.c b/libc/stdlib/exit.c new file mode 100644 index 000000000..a2255d2b4 --- /dev/null +++ b/libc/stdlib/exit.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_exit +#include "_atexit.c" diff --git a/libc/stdlib/labs.c b/libc/stdlib/labs.c new file mode 100644 index 000000000..95196af99 --- /dev/null +++ b/libc/stdlib/labs.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_labs +#include "stdlib.c" diff --git a/libc/stdlib/llabs.c b/libc/stdlib/llabs.c new file mode 100644 index 000000000..17ec30a64 --- /dev/null +++ b/libc/stdlib/llabs.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_llabs +#include "stdlib.c" diff --git a/libc/stdlib/malloc-simple/calloc.c b/libc/stdlib/malloc-simple/calloc.c new file mode 100644 index 000000000..75edff86d --- /dev/null +++ b/libc/stdlib/malloc-simple/calloc.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_calloc +#include "alloc.c" diff --git a/libc/stdlib/malloc-simple/free.c b/libc/stdlib/malloc-simple/free.c new file mode 100644 index 000000000..553a6bfc8 --- /dev/null +++ b/libc/stdlib/malloc-simple/free.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_free +#include "alloc.c" diff --git a/libc/stdlib/malloc-simple/malloc.c b/libc/stdlib/malloc-simple/malloc.c new file mode 100644 index 000000000..61f33d871 --- /dev/null +++ b/libc/stdlib/malloc-simple/malloc.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_malloc +#include "alloc.c" diff --git a/libc/stdlib/malloc-simple/memalign.c b/libc/stdlib/malloc-simple/memalign.c new file mode 100644 index 000000000..24b7ab9c5 --- /dev/null +++ b/libc/stdlib/malloc-simple/memalign.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_memalign +#include "alloc.c" diff --git a/libc/stdlib/malloc-simple/realloc.c b/libc/stdlib/malloc-simple/realloc.c new file mode 100644 index 000000000..de9675d59 --- /dev/null +++ b/libc/stdlib/malloc-simple/realloc.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_realloc +#include "alloc.c" diff --git a/libc/stdlib/mblen.c b/libc/stdlib/mblen.c new file mode 100644 index 000000000..c7a0ccb6e --- /dev/null +++ b/libc/stdlib/mblen.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_mblen +#include "stdlib.c" diff --git a/libc/stdlib/mbstowcs.c b/libc/stdlib/mbstowcs.c new file mode 100644 index 000000000..f61800373 --- /dev/null +++ b/libc/stdlib/mbstowcs.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_mbstowcs +#include "stdlib.c" diff --git a/libc/stdlib/mbtowc.c b/libc/stdlib/mbtowc.c new file mode 100644 index 000000000..5d888d163 --- /dev/null +++ b/libc/stdlib/mbtowc.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_mbtowc +#include "stdlib.c" diff --git a/libc/stdlib/old_atexit.c b/libc/stdlib/old_atexit.c new file mode 100644 index 000000000..b15fd0aa2 --- /dev/null +++ b/libc/stdlib/old_atexit.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_old_atexit +#include "_atexit.c" diff --git a/libc/stdlib/on_exit.c b/libc/stdlib/on_exit.c new file mode 100644 index 000000000..cb943aca1 --- /dev/null +++ b/libc/stdlib/on_exit.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_on_exit +#include "_atexit.c" diff --git a/libc/stdlib/qsort.c b/libc/stdlib/qsort.c new file mode 100644 index 000000000..31fc2eaf8 --- /dev/null +++ b/libc/stdlib/qsort.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_qsort +#include "stdlib.c" diff --git a/libc/stdlib/strtod.c b/libc/stdlib/strtod.c new file mode 100644 index 000000000..7f59aef49 --- /dev/null +++ b/libc/stdlib/strtod.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtod +#include "_strtod.c" diff --git a/libc/stdlib/strtod_l.c b/libc/stdlib/strtod_l.c new file mode 100644 index 000000000..413124230 --- /dev/null +++ b/libc/stdlib/strtod_l.c @@ -0,0 +1,9 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtod_l +#define __UCLIBC_DO_XLOCALE +#include "_strtod.c" diff --git a/libc/stdlib/strtof.c b/libc/stdlib/strtof.c new file mode 100644 index 000000000..35e89771a --- /dev/null +++ b/libc/stdlib/strtof.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtof +#include "_strtod.c" diff --git a/libc/stdlib/strtof_l.c b/libc/stdlib/strtof_l.c new file mode 100644 index 000000000..7b44d1b05 --- /dev/null +++ b/libc/stdlib/strtof_l.c @@ -0,0 +1,9 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtof_l +#define __UCLIBC_DO_XLOCALE +#include "_strtod.c" diff --git a/libc/stdlib/strtol.c b/libc/stdlib/strtol.c new file mode 100644 index 000000000..cee4e1347 --- /dev/null +++ b/libc/stdlib/strtol.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtol +#include "stdlib.c" diff --git a/libc/stdlib/strtol_l.c b/libc/stdlib/strtol_l.c new file mode 100644 index 000000000..d59c1e50c --- /dev/null +++ b/libc/stdlib/strtol_l.c @@ -0,0 +1,8 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtol_l +#define __UCLIBC_DO_XLOCALE +#include "stdlib.c" diff --git a/libc/stdlib/strtold.c b/libc/stdlib/strtold.c new file mode 100644 index 000000000..91a3ba79d --- /dev/null +++ b/libc/stdlib/strtold.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtold +#include "_strtod.c" diff --git a/libc/stdlib/strtold_l.c b/libc/stdlib/strtold_l.c new file mode 100644 index 000000000..7eccd00bb --- /dev/null +++ b/libc/stdlib/strtold_l.c @@ -0,0 +1,9 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtold_l +#define __UCLIBC_DO_XLOCALE +#include "_strtod.c" diff --git a/libc/stdlib/strtoll.c b/libc/stdlib/strtoll.c new file mode 100644 index 000000000..a9c7c83ee --- /dev/null +++ b/libc/stdlib/strtoll.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtoll +#include "stdlib.c" diff --git a/libc/stdlib/strtoll_l.c b/libc/stdlib/strtoll_l.c new file mode 100644 index 000000000..9fa46bdd4 --- /dev/null +++ b/libc/stdlib/strtoll_l.c @@ -0,0 +1,8 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtoll_l +#define __UCLIBC_DO_XLOCALE +#include "stdlib.c" diff --git a/libc/stdlib/strtoul.c b/libc/stdlib/strtoul.c new file mode 100644 index 000000000..e92d2464b --- /dev/null +++ b/libc/stdlib/strtoul.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtoul +#include "stdlib.c" diff --git a/libc/stdlib/strtoul_l.c b/libc/stdlib/strtoul_l.c new file mode 100644 index 000000000..2aef138a5 --- /dev/null +++ b/libc/stdlib/strtoul_l.c @@ -0,0 +1,8 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtoul_l +#define __UCLIBC_DO_XLOCALE +#include "stdlib.c" diff --git a/libc/stdlib/strtoull.c b/libc/stdlib/strtoull.c new file mode 100644 index 000000000..60b626fe0 --- /dev/null +++ b/libc/stdlib/strtoull.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtoull +#include "stdlib.c" diff --git a/libc/stdlib/strtoull_l.c b/libc/stdlib/strtoull_l.c new file mode 100644 index 000000000..81e045a4d --- /dev/null +++ b/libc/stdlib/strtoull_l.c @@ -0,0 +1,8 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_strtoull_l +#define __UCLIBC_DO_XLOCALE +#include "stdlib.c" diff --git a/libc/stdlib/wcstod.c b/libc/stdlib/wcstod.c new file mode 100644 index 000000000..08f802112 --- /dev/null +++ b/libc/stdlib/wcstod.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstod +#include "_strtod.c" diff --git a/libc/stdlib/wcstod_l.c b/libc/stdlib/wcstod_l.c new file mode 100644 index 000000000..be0e58e51 --- /dev/null +++ b/libc/stdlib/wcstod_l.c @@ -0,0 +1,9 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstod_l +#define __UCLIBC_DO_XLOCALE +#include "_strtod.c" diff --git a/libc/stdlib/wcstof.c b/libc/stdlib/wcstof.c new file mode 100644 index 000000000..27ad22f61 --- /dev/null +++ b/libc/stdlib/wcstof.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstof +#include "_strtod.c" diff --git a/libc/stdlib/wcstof_l.c b/libc/stdlib/wcstof_l.c new file mode 100644 index 000000000..953ebe040 --- /dev/null +++ b/libc/stdlib/wcstof_l.c @@ -0,0 +1,9 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstof_l +#define __UCLIBC_DO_XLOCALE +#include "_strtod.c" diff --git a/libc/stdlib/wcstol.c b/libc/stdlib/wcstol.c new file mode 100644 index 000000000..74462e1a8 --- /dev/null +++ b/libc/stdlib/wcstol.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstol +#include "stdlib.c" diff --git a/libc/stdlib/wcstol_l.c b/libc/stdlib/wcstol_l.c new file mode 100644 index 000000000..4282987dc --- /dev/null +++ b/libc/stdlib/wcstol_l.c @@ -0,0 +1,8 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstol_l +#define __UCLIBC_DO_XLOCALE +#include "stdlib.c" diff --git a/libc/stdlib/wcstold.c b/libc/stdlib/wcstold.c new file mode 100644 index 000000000..cd879c110 --- /dev/null +++ b/libc/stdlib/wcstold.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstold +#include "_strtod.c" diff --git a/libc/stdlib/wcstold_l.c b/libc/stdlib/wcstold_l.c new file mode 100644 index 000000000..2ea23b0d5 --- /dev/null +++ b/libc/stdlib/wcstold_l.c @@ -0,0 +1,9 @@ +/* + * Copyright (C) 2000-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstold_l +#define __UCLIBC_DO_XLOCALE +#include "_strtod.c" diff --git a/libc/stdlib/wcstoll.c b/libc/stdlib/wcstoll.c new file mode 100644 index 000000000..4cc9b05fb --- /dev/null +++ b/libc/stdlib/wcstoll.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstoll +#include "stdlib.c" diff --git a/libc/stdlib/wcstoll_l.c b/libc/stdlib/wcstoll_l.c new file mode 100644 index 000000000..66c23c290 --- /dev/null +++ b/libc/stdlib/wcstoll_l.c @@ -0,0 +1,8 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstoll_l +#define __UCLIBC_DO_XLOCALE +#include "stdlib.c" diff --git a/libc/stdlib/wcstombs.c b/libc/stdlib/wcstombs.c new file mode 100644 index 000000000..c3d08d8d5 --- /dev/null +++ b/libc/stdlib/wcstombs.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstombs +#include "stdlib.c" diff --git a/libc/stdlib/wcstoul.c b/libc/stdlib/wcstoul.c new file mode 100644 index 000000000..55427447c --- /dev/null +++ b/libc/stdlib/wcstoul.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstoul +#include "stdlib.c" diff --git a/libc/stdlib/wcstoul_l.c b/libc/stdlib/wcstoul_l.c new file mode 100644 index 000000000..529e8e40b --- /dev/null +++ b/libc/stdlib/wcstoul_l.c @@ -0,0 +1,8 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstoul_l +#define __UCLIBC_DO_XLOCALE +#include "stdlib.c" diff --git a/libc/stdlib/wcstoull.c b/libc/stdlib/wcstoull.c new file mode 100644 index 000000000..ea884ef08 --- /dev/null +++ b/libc/stdlib/wcstoull.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstoull +#include "stdlib.c" diff --git a/libc/stdlib/wcstoull_l.c b/libc/stdlib/wcstoull_l.c new file mode 100644 index 000000000..976d103ee --- /dev/null +++ b/libc/stdlib/wcstoull_l.c @@ -0,0 +1,8 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wcstoull_l +#define __UCLIBC_DO_XLOCALE +#include "stdlib.c" diff --git a/libc/stdlib/wctomb.c b/libc/stdlib/wctomb.c new file mode 100644 index 000000000..3f612be27 --- /dev/null +++ b/libc/stdlib/wctomb.c @@ -0,0 +1,7 @@ +/* Copyright (C) 2004-2006 Manuel Novoa III + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_wctomb +#include "stdlib.c" -- cgit v1.2.3