Skip to content
Snippets Groups Projects
Select Git revision
  • 08256e681ca958282c556749d6332bf473cf4251
  • master default
2 results

hello-3.c

Blame
  • Forked from Peter Gerwinski / hp
    361 commits behind the upstream repository.
    hello-3.c 121 B
    extern int printf (const char *__restrict __format, ...);
    
    int main (void)
    {
      printf ("Hello, world!\n");
      return 0;
    }