Add shared libraries TDM

This commit is contained in:
Yorick Barbanneau 2018-11-16 10:52:10 +01:00
parent 455d9dcd79
commit c027416fd5
3 changed files with 78 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#include <sys/utsname.h>
#include <string.h>
int uname(struct utsname *buf)
{
strcpy(buf->sysname,"Windows GNU/LINUX");
strcpy(buf->nodename, "");
strcpy(buf->release, "10.0.0.1");
strcpy(buf->version, "10.2");
strcpy(buf->machine, "Shittycorp processors inc.");
return 1;
}