Skip to content

Instantly share code, notes, and snippets.

@tav
Created June 13, 2009 05:27
Show Gist options
  • Save tav/129108 to your computer and use it in GitHub Desktop.
Save tav/129108 to your computer and use it in GitHub Desktop.
#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