false.c 278 B

12345678910
  1. /* vim: tabstop=4 shiftwidth=4 noexpandtab
  2. * This file is part of ToaruOS and is released under the terms
  3. * of the NCSA / University of Illinois License - see LICENSE.md
  4. * Copyright (C) 2018 K. Lange
  5. *
  6. * false - returns a failure status code.
  7. */
  8. int main() {
  9. return 1;
  10. }