Skip to content

Instantly share code, notes, and snippets.

@vladimir-vg
Created April 7, 2011 07:28
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 vladimir-vg/907224 to your computer and use it in GitHub Desktop.
Save vladimir-vg/907224 to your computer and use it in GitHub Desktop.
$ gcc moped.c -Wall -Wextra -ansi
$ ./a.out
typedef enum
{
serCOM1,
serCOM2,
serCOM3,
serCOM4
} eCOMPort;
int
main(int argc, char **argv)
{
(void) argc;
(void) argv;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment