Skip to content

Instantly share code, notes, and snippets.

@shlevy
Created October 19, 2011 03:03
Show Gist options
  • Select an option

  • Save shlevy/1297386 to your computer and use it in GitHub Desktop.

Select an option

Save shlevy/1297386 to your computer and use it in GitHub Desktop.
clang -c -O2 -D_FORTIFY_SOURCE=1 -o objects/os_unix.o os_unix.c
#include <string.h>
#include <unistd.h>
int mch_dirname(char *buf, int len)
{
return strlen(getcwd((char *)buf, len));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment