Skip to content

Instantly share code, notes, and snippets.

@mythosil
Created June 24, 2011 01:57
Show Gist options
  • Save mythosil/1044062 to your computer and use it in GitHub Desktop.
Save mythosil/1044062 to your computer and use it in GitHub Desktop.
#include <stdio.h>
void func() __attribute__((deprecated));
int main(int argc, char** argv)
{
func();
return 0;
}
void func() {
printf("deprecated\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment