diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/parenthesized_indirect_call.c')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/parenthesized_indirect_call.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/parenthesized_indirect_call.c b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/parenthesized_indirect_call.c deleted file mode 100644 index 3d5a6819..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/parenthesized_indirect_call.c +++ /dev/null @@ -1,17 +0,0 @@ -#include <stdio.h> - -void hello(void) -{ - printf("Hello world!\n"); -} - -void (*get_hello(void))(void) -{ - return hello; -} - -int main() -{ - (get_hello())(); - return 0; -} |