Remove obsolete __SORTIX_SHOW_UNIMPLEMENTED feature macro.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-09-23 16:57:22 +02:00
parent 69eb2f0e5f
commit 9700623737
7 changed files with 6 additions and 9 deletions

View File

@ -125,7 +125,4 @@
#define __pure2 __attribute__((__const__))
/* Don't provide things from standard headers that is not implemented. */
/*#define __SORTIX_SHOW_UNIMPLEMENTED*/
#endif

View File

@ -134,7 +134,7 @@ int vsprintf(char* __restrict s, const char* __restrict format, __gnuc_va_list a
int vsscanf(const char* __restrict s, const char* __restrict format, __gnuc_va_list arg);
/* TODO: These are not implemented in sortix libc yet. */
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
#if 0
char* ctermid(char* s);
FILE *fmemopen(void* __restrict buf, size_t size, const char* __restrict mode);
FILE* open_memstream(char** bufp, size_t* sizep);

View File

@ -129,7 +129,7 @@ int clearenv(void);
#endif
/* TODO: These are not implemented in sortix libc yet. */
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
#if 0
long a64l(const char* s);
double drand48(void);
double erand48(unsigned short [3]);

View File

@ -38,7 +38,7 @@ __BEGIN_DECLS
@include(pid_t.h)
/* TODO: These are not implemented in sortix libc yet. */
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
#if 0
int waitid(idtype_t, id_t, siginfo_t*, int);
#endif

View File

@ -265,7 +265,7 @@ extern char** environ;
#endif
/* TODO: These are not implemented in sortix libc yet. */
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
#if 0
char* crypt(const char*, const char*);
char* ctermid(char*);
void encrypt(char [64], int);

View File

@ -92,7 +92,7 @@ wchar_t* wmemmove(wchar_t*, const wchar_t*, size_t);
wchar_t* wmemset(wchar_t*, wchar_t, size_t);
/* TODO: These are not implemented in sortix libc yet. */
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
#if 0
double wcstod(const wchar_t* __restrict, wchar_t** __restrict);
FILE* open_wmemstream(wchar_t** bufp, size_t* sizep);
float wcstof(const wchar_t* __restrict, wchar_t** __restrict);

View File

@ -55,7 +55,7 @@ wint_t towupper(wint_t);
wctype_t wctype(const char *);
/* TODO: These are not implemented in sortix libc yet. */
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
#if 0
int iswalnum_l(wint_t, locale_t);
int iswalpha_l(wint_t, locale_t);
int iswblank_l(wint_t, locale_t);