From 4fbdf382953d47e47c3b33d8f9f1e70804afcba1 Mon Sep 17 00:00:00 2001 From: "benjamin.franksen" <benjamin.franksen@helmholtz-berlin.de> Date: Tue, 8 Oct 2013 19:47:01 +0000 Subject: [PATCH] test: removed "function" keyword from funcdef.st --- test/compiler/funcdef.st | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/compiler/funcdef.st b/test/compiler/funcdef.st index 97d17b50..e6766fa7 100644 --- a/test/compiler/funcdef.st +++ b/test/compiler/funcdef.st @@ -15,18 +15,18 @@ ss simple { } } -function void *f1(void) +void *f1(void) { return 0; } -function void *f2(void *x, double **d) +void *f2(void *x, double **d) { void *(*f)(void) = (void *(*)(void))x; return f(); } -function void pvSetX(int val) +void pvSetX(int val) { pvPut(x,val); printf("x=%d, val=%d\n", x, val); -- GitLab