From 50eed107ae63dc503fc58bc1a2e679ce232e283c Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 3 Dec 2007 19:20:40 +0000 Subject: 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. --- contrib/spi/preprocessor/step1.c | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 contrib/spi/preprocessor/step1.c (limited to 'contrib/spi/preprocessor/step1.c') diff --git a/contrib/spi/preprocessor/step1.c b/contrib/spi/preprocessor/step1.c deleted file mode 100644 index 8a5379e8e0..0000000000 --- a/contrib/spi/preprocessor/step1.c +++ /dev/null @@ -1,27 +0,0 @@ -#include - -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)); - } - -} -- cgit v1.2.1