Skip to content
Snippets Groups Projects
Select Git revision
  • MPeth-2022ws-patch-01682
  • 2022ws default protected
  • 2021ws
  • 2020ws
  • 2019ws
  • 2019ss
  • 2018ws
  • 2017ws
  • 2017ss
  • 2016ws
  • 2016ss
  • 2015ss
12 results

function-call.c

Blame
  • Forked from Peter Gerwinski / es
    225 commits behind the upstream repository.
    function-call.c 117 B
    #include <stdio.h>
    
    void hello (void)
    {
      printf ("Hello, world!\n");
    }
    
    int main (void)
    {
      hello ();
      return 0;
    }