diff options
author | Bruce Momjian <bruce@momjian.us> | 1996-10-05 20:33:10 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1996-10-05 20:33:10 +0000 |
commit | efac791640e45824fdbe069cf32e02a5ee3bee9a (patch) | |
tree | 13b5fa27c48d2019ca43762d57c7e6d4a6ea5e93 /src | |
parent | 47279960a0d8446e02640167675e96f0ec6528b3 (diff) | |
download | postgresql-efac791640e45824fdbe069cf32e02a5ee3bee9a.tar.gz postgresql-efac791640e45824fdbe069cf32e02a5ee3bee9a.zip |
Change shell-style comments to C-style.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/config.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/include/config.h b/src/include/config.h index be658ce0a80..9fa55f72f8a 100644 --- a/src/include/config.h +++ b/src/include/config.h @@ -32,12 +32,14 @@ # define NO_VFORK #endif -# The following is used as the arg list for signal handlers. Any ports -# that take something other than an int argument should change this in -# the port specific makefile. Note that variable names are required -# because it is used in both the prototypes as well as the definitions. -# Note also the long name. We expect that this won't collide with -# other names causing compiler warnings. +/* + The following is used as the arg list for signal handlers. Any ports + that take something other than an int argument should change this in + the port specific makefile. Note that variable names are required + because it is used in both the prototypes as well as the definitions. + Note also the long name. We expect that this won't collide with + other names causing compiler warnings. +*/ #ifndef SIGNAL_ARGS #define SIGNAL_ARGS int postgres_signal_arg #endif |