43_void_param.c 149 B

12345678910111213141516
  1. #include <stdio.h>
  2. void fred(void)
  3. {
  4. printf("yo\n");
  5. }
  6. int main()
  7. {
  8. fred();
  9. return 0;
  10. }
  11. /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/