forked from KolibriOS/kolibrios
6496d04506
This version of menuetlibc was taken from revision 4743, right before I made any changes git-svn-id: svn://kolibrios.org@4973 a494cfbc-eb01-0410-851d-a64ba20cac60
17 lines
226 B
C
17 lines
226 B
C
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
#include<string.h>
|
|
#include<ctype.h>
|
|
|
|
static char **SDL_env = (char **)0;
|
|
|
|
int __libc_putenv(const char *variable)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
char * __libc_getenv(const char *name)
|
|
{
|
|
return NULL;
|
|
}
|