From aaeef4d17db9ded501fa02c9ca6c00f86258b171 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 10 Nov 1996 03:06:38 +0000 Subject: All external function definitions now have prototypes that are checked. --- src/include/lib/dllist.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include/lib') diff --git a/src/include/lib/dllist.h b/src/include/lib/dllist.h index 4cc56c9874..8e18470f87 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*); -- cgit v1.2.1