diff options
Diffstat (limited to 'src/include/libpq/pqsignal.h')
-rw-r--r-- | src/include/libpq/pqsignal.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/libpq/pqsignal.h b/src/include/libpq/pqsignal.h index 389667c859d..69bdb21df7e 100644 --- a/src/include/libpq/pqsignal.h +++ b/src/include/libpq/pqsignal.h @@ -1,24 +1,24 @@ /*------------------------------------------------------------------------- * * pqsignal.h-- - * prototypes for the reliable BSD-style signal(2) routine. + * prototypes for the reliable BSD-style signal(2) routine. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pqsignal.h,v 1.5 1996/12/26 22:08:13 momjian Exp $ + * $Id: pqsignal.h,v 1.6 1997/09/07 04:58:27 momjian Exp $ * * NOTES - * This shouldn't be in libpq, but the monitor and some other - * things need it... + * This shouldn't be in libpq, but the monitor and some other + * things need it... * *------------------------------------------------------------------------- */ #ifndef PQSIGNAL_H #define PQSIGNAL_H -typedef void (*pqsigfunc)(int); +typedef void (*pqsigfunc) (int); extern pqsigfunc pqsignal(int signo, pqsigfunc func); -#endif /* PQSIGNAL_H */ +#endif /* PQSIGNAL_H */ |