empty.c 179 B

123456789101112
  1. #include <u.h>
  2. #include <libc.h>
  3. /*
  4. * Do nothing. We can't exits from this one. It tests correctness of programs
  5. * that just return.
  6. */
  7. void
  8. main(int argc, char *argv[])
  9. {
  10. }