Skip to content

Instantly share code, notes, and snippets.

Created February 16, 2016 04:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/732747e899e85c126680 to your computer and use it in GitHub Desktop.
Save anonymous/732747e899e85c126680 to your computer and use it in GitHub Desktop.
//bill.c
#include<stdio.h>
void bill(char *arg)
{
printf("bill : we passed %s \n",arg);
}
//fred.c
#include<stdio.h>
void fred(int arg)
{
printf("fred: we passed %d \n",arg);
}
//program.c
#include<stlib.h>
#include"lib.h"
int man()
{
bill("Hello World");
exit(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment