diff options
author | Bruce Momjian | 1996-11-10 03:06:38 +0000 |
---|---|---|
committer | Bruce Momjian | 1996-11-10 03:06:38 +0000 |
commit | aaeef4d17db9ded501fa02c9ca6c00f86258b171 (patch) | |
tree | 7f27c0c7519886eda3b9ddd6fe1eb4a9d628dacb /src/include/lib | |
parent | bf5cbbf7895aa16b2e18dbe29462a4fd8baf4293 (diff) |
All external function definitions now have prototypes that are checked.
Diffstat (limited to 'src/include/lib')
-rw-r--r-- | src/include/lib/dllist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/lib/dllist.h b/src/include/lib/dllist.h index 4cc56c98744..8e18470f878 100644 --- a/src/include/lib/dllist.h +++ b/src/include/lib/dllist.h @@ -26,7 +26,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: dllist.h,v 1.2 1996/10/31 09:48:40 scrappy Exp $ + * $Id: dllist.h,v 1.3 1996/11/10 03:05:16 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -50,7 +50,7 @@ typedef struct Dllist { Dlelem *dll_tail; } Dllist; -extern Dllist* DLNewList(); /* initialize a new list */ +extern Dllist* DLNewList(void); /* initialize a new list */ extern void DLFreeList(Dllist*); /* free up a list and all the nodes in it*/ extern Dlelem* DLNewElem(void* val); extern void DLFreeElem(Dlelem*); |