index
:
tinyld.git
trunk
a linker for making tiny 32-bit linux executables.
root
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test.c
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'test.c')
-rw-r--r--
test.c
4
1 files changed, 3 insertions, 1 deletions
diff --git a/test.c b/test.c
index 86453de..31dee49 100644
--- a/
test.c
+++ b/
test.c
@@ -2,6 +2,8 @@
#include <stdlib.h>
+int f() { return 13; }
+
void entry(void) {
- exit(42);
+ exit(f());
}