diff options
author | Bruce Momjian | 1998-01-24 22:50:57 +0000 |
---|---|---|
committer | Bruce Momjian | 1998-01-24 22:50:57 +0000 |
commit | 72295139434d26c6da565faee2f50cb6fa900d43 (patch) | |
tree | fe3868a4a1f475cc4d7adbc7ab069052b5d67b20 /src/include/lib | |
parent | 27317a0d7c267ef356f7620f00769363007fcb3f (diff) |
Fix prototypes so they don't look like function definitions.
Diffstat (limited to 'src/include/lib')
-rw-r--r-- | src/include/lib/qsort.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/lib/qsort.h b/src/include/lib/qsort.h index d321ed7fb2c..5ec39ee7a04 100644 --- a/src/include/lib/qsort.h +++ b/src/include/lib/qsort.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: qsort.h,v 1.3 1997/09/07 04:58:13 momjian Exp $ + * $Id: qsort.h,v 1.4 1998/01/24 22:49:12 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -14,8 +14,7 @@ #define QSORT_H -extern void -pg_qsort(void *bot, +extern void pg_qsort(void *bot, size_t nmemb, size_t size, int (*compar) (void *, void *)); |