mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
15 lines
176 B
C
15 lines
176 B
C
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <libposix.h>
|
|
#include <posix_init.h>
|
|
#include <unistd.h>
|
|
|
|
int __libposix_init(void *envp)
|
|
{
|
|
__environ = envp;
|
|
return 0;
|
|
}
|
|
|