diff options
Diffstat (limited to 'src/tools/pg_bsd_indent/tests/f_decls.0.stdout')
-rw-r--r-- | src/tools/pg_bsd_indent/tests/f_decls.0.stdout | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/tools/pg_bsd_indent/tests/f_decls.0.stdout b/src/tools/pg_bsd_indent/tests/f_decls.0.stdout new file mode 100644 index 00000000000..bc212485524 --- /dev/null +++ b/src/tools/pg_bsd_indent/tests/f_decls.0.stdout @@ -0,0 +1,30 @@ +char * +x(void) +{ + type identifier; + type *pointer; + unused *value; + (void)unused * value; + + dmax = (double)3 * 10.0; + dmin = (double)dmax * 10.0; + davg = (double)dmax * dmin; + + return NULL; +} + +int * +y(void) +{ + +} + +int +z(void) +{ + +} + +int x; +int *y; +int ****z; |