diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-12-03 19:20:40 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-12-03 19:20:40 +0000 |
commit | 50eed107ae63dc503fc58bc1a2e679ce232e283c (patch) | |
tree | e9f7a1aadd4f9e95c5f02afa5e98901801c3e0e1 /contrib/spi/preprocessor/step1.c | |
parent | 739338e88a608955ddfdc6ea125a3b6e959176c9 (diff) | |
download | postgresql-50eed107ae63dc503fc58bc1a2e679ce232e283c.tar.gz postgresql-50eed107ae63dc503fc58bc1a2e679ce232e283c.zip |
Remove contrib/spi/preprocessor, which has been uninteresting ever
since we supported standard FOREIGN KEY constraint syntax. It was
harmless enough just sitting there, but the prospect of having to
document it is surely more work than it's worth.
Diffstat (limited to 'contrib/spi/preprocessor/step1.c')
-rw-r--r-- | contrib/spi/preprocessor/step1.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/contrib/spi/preprocessor/step1.c b/contrib/spi/preprocessor/step1.c deleted file mode 100644 index 8a5379e8e04..00000000000 --- a/contrib/spi/preprocessor/step1.c +++ /dev/null @@ -1,27 +0,0 @@ -#include <stdio.h> - -char * -strtoupper(char *string) -{ - int i; - - for (i = 0; i < strlen(string); i++) - string[i] = toupper((unsigned char) string[i]); - return string; -} - - - -void -main(char argc, char **argv) -{ - char str[250]; - int sw = 0; - - while (fgets(str, 240, stdin)) - { - if (sw == 0) - printf("%s", strtoupper(str)); - } - -} |