summaryrefslogtreecommitdiff
path: root/out.c
diff options
context:
space:
mode:
Diffstat (limited to 'out.c')
-rw-r--r--out.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/out.c b/out.c
index 22c285e..dca1ae7 100644
--- a/out.c
+++ b/out.c
@@ -2,11 +2,12 @@
/* toc */
#include <stdio.h>
-void x__c5x__b3x__c5x__84x__c4x__a8(void) {
- printf("Hello, World!\n");
+void foo__bar(void) {
+ puts("Hello!");
+;
}
void main__(void) {
- x__c5x__b3x__c5x__84x__c4x__a8();
+ foo__bar();
}
int main(void) {