ps2sdk  1.1
A collection of Open Source libraries used for developing applications on Sony's PlayStation 2® (PS2).
hello.c
Go to the documentation of this file.
1 /*
2 # _____ ___ ____ ___ ____
3 # ____| | ____| | | |____|
4 # | ___| |____ ___| ____| | \ PS2DEV Open Source Project.
5 #-----------------------------------------------------------------------
6 # Copyright 2001-2004, ps2dev - http://www.ps2dev.org
7 # Licenced under Academic Free License version 2.0
8 # Review ps2sdk README & LICENSE files for further details.
9 #
10 # Hello sample
11 */
12 
13 #include <stdio.h>
14 #include <erl.h>
15 
16 char * erl_id = "hello";
17 char * erl_dependancies[] = {
18  "libc",
19  0
20 };
21 
22 int main()
23 {
24  printf("Hello world!\n");
25 
26  return 0;
27 }
char * erl_id
Definition: hello.c:16
int main()
Definition: hello.c:22
char * erl_dependancies[]
Definition: hello.c:17