2017-05-02 21:30:46 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes --- Maxwell Equations of Software
|
2019-03-03 09:04:33 +00:00
|
|
|
* Copyright © 2017,2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2017-05-02 21:30:46 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* This file is part of GNU Mes.
|
2017-05-02 21:30:46 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
2017-05-02 21:30:46 +00:00
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
2017-05-02 21:30:46 +00:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-22 12:24:36 +00:00
|
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2017-05-02 21:30:46 +00:00
|
|
|
*/
|
2017-05-23 05:16:08 +00:00
|
|
|
#ifndef __MES_STDLIB_H
|
|
|
|
#define __MES_STDLIB_H 1
|
2017-05-02 21:30:46 +00:00
|
|
|
|
2019-06-25 17:05:58 +00:00
|
|
|
#ifndef __MES_COMPARISON_FN_T
|
|
|
|
#define __MES_COMPARISON_FN_T
|
|
|
|
typedef int (*comparison_fn_t) (void const *, void const *);
|
|
|
|
#endif
|
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#if SYSTEM_LIBC
|
2017-05-02 21:30:46 +00:00
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#endif
|
2017-07-23 13:49:03 +00:00
|
|
|
#undef __MES_STDLIB_H
|
2017-05-02 21:30:46 +00:00
|
|
|
#include_next <stdlib.h>
|
2019-05-29 14:15:12 +00:00
|
|
|
#else // ! SYSTEM_LIBC
|
2017-05-02 21:30:46 +00:00
|
|
|
|
2018-06-19 18:23:38 +00:00
|
|
|
#include <sys/types.h>
|
2018-06-20 22:27:27 +00:00
|
|
|
#include <alloca.h>
|
2017-05-02 21:30:46 +00:00
|
|
|
|
2019-06-12 13:59:06 +00:00
|
|
|
void abort (void);
|
2019-03-03 09:04:33 +00:00
|
|
|
double atof (char const *s);
|
2017-05-23 05:16:08 +00:00
|
|
|
int atoi (char const *s);
|
2018-06-07 16:02:21 +00:00
|
|
|
int atexit (void (*function) (void));
|
2019-05-18 11:27:42 +00:00
|
|
|
void *calloc (size_t nmemb, size_t size);
|
2018-06-07 16:02:21 +00:00
|
|
|
void _exit (int status);
|
|
|
|
void exit (int status);
|
2017-07-24 16:24:51 +00:00
|
|
|
void free (void *ptr);
|
2019-05-18 11:27:42 +00:00
|
|
|
char *getenv (char const *s);
|
|
|
|
int setenv (char const *s, char const *v, int overwrite_p);
|
2018-06-06 17:43:32 +00:00
|
|
|
void unsetenv (char const *name);
|
2017-05-02 21:30:46 +00:00
|
|
|
void *malloc (size_t);
|
2019-05-18 11:27:42 +00:00
|
|
|
void qsort (void *base, size_t nmemb, size_t size, int (*compar) (void const *, void const *));
|
mescc: Support GNU Bash.
* include/errno.h (EACCES, ENOSPC, ESPIPE): New macro.
* include/linux/x86/syscall.h (SYS_setuid, SYS_geteuid, SYS_getegid,
SYS_setgid): New macro.
* include/linux/x86_64/syscall.h: Likewise.
* include/stdint.h (LLONG_MIN, LLONG_MAX, SIZE_MAX): New macro.
* include/sys/stat.h (S_ISUID, S_ISGID, S_IXGRP, S_IXOTH, S_IRGRP,
S_IROTH, S_IWGRP, S_IWOTH, S_IRWXG, S_IRWXO): New macro.
* include/termio.h: New file.
* include/unistd.h (_POSIX_VERSION): New macro.
* lib/linux/gnu.c (geteuid, getegid, setuid, setgid): New function.
* lib/string/memchr.c: New file.
* lib/stub/getpwuid.c: New file.
* lib/stub/rand.c: New file.
* lib/stub/ttyname.c: New file.
* include/string.h (memchr): Declare.
* include/unistd.h (geteuid, getegid, setuid, setgid): Declare.
2018-11-09 20:26:10 +00:00
|
|
|
int rand (void);
|
2017-05-23 05:16:08 +00:00
|
|
|
void *realloc (void *p, size_t size);
|
2018-06-06 20:39:57 +00:00
|
|
|
double strtod (char const *string, char **tailptr);
|
|
|
|
float strtof (char const *string, char **tailptr);
|
|
|
|
long double strtold (char const *string, char **tailptr);
|
|
|
|
long strtol (char const *string, char **tailptr, int base);
|
|
|
|
long long strtoll (char const *string, char **tailptr, int base);
|
|
|
|
unsigned long strtoul (char const *string, char **tailptr, int base);
|
|
|
|
unsigned long long strtoull (char const *string, char **tailptr, int base);
|
2017-05-23 05:16:08 +00:00
|
|
|
|
2017-11-19 13:05:33 +00:00
|
|
|
#define EXIT_FAILURE 1
|
|
|
|
#define EXIT_SUCCESS 0
|
|
|
|
|
2019-05-18 11:27:42 +00:00
|
|
|
void *bsearch (void const *key, void const *array, size_t count, size_t size, comparison_fn_t compare);
|
2018-06-06 11:16:25 +00:00
|
|
|
|
2019-05-29 14:15:12 +00:00
|
|
|
#endif // ! SYSTEM_LIBC
|
2017-05-02 21:30:46 +00:00
|
|
|
|
2017-05-23 05:16:08 +00:00
|
|
|
#endif // __MES_STDLIB_H
|