summaryrefslogtreecommitdiffstats
path: root/contrib/restricted/emscripten/system/lib/libc/system.c
blob: c02ec4d86b4aacda66f01f04e1e1de626d769ba6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include "pthread_impl.h"
#include "emscripten_internal.h"

int system(const char *cmd)
{
	return __syscall_ret(_emscripten_system(cmd));
}