source: bootcd/isolinux/syslinux-6.03/win/hello.c @ 26ffad7

Last change on this file since 26ffad7 was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 208 bytes
Line 
1/*
2 * Test program for C compiler; if this doesn't compile, the
3 * C compiler is seriously broken.
4 */
5
6#include <stdlib.h>
7#include <stdio.h>
8
9int main(void)
10{
11    printf("Hello, World!\n");
12    return 0;
13}
Note: See TracBrowser for help on using the repository browser.