Skip to content

Instantly share code, notes, and snippets.

@YellPika
YellPika / gcc.c
Last active April 14, 2017 15:57
#include <stdio.h>
#include <stdlib.h>
char *tmp;
#define mkString(...) (sprintf(tmp = malloc(snprintf(NULL, 0, __VA_ARGS__) + 1), __VA_ARGS__), tmp)
int main(int argc, char** argv) {
char *binDir;
char *exePath;
char *preArgv[4];