Created
June 13, 2009 05:27
-
-
Save tav/129108 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <unistd.h> | |
#include <stdio.h> | |
#include <stddef.h> /* for offsetof() */ | |
void dump(char* key, int value) { | |
printf("%s: %d\n", key, value); | |
} | |
int main(int argc, char *argv[]) { | |
setpgrp(0,0); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment