Was missing 'void' in the prototype which confuses the C compiler.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@55 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2001-02-24 02:45:36 +00:00
parent 26aa333625
commit 650960a95e
+2 -2
View File
@@ -1,5 +1,5 @@
/** /**
* $Id: preferences.h,v 1.1 2001/02/24 02:35:20 mdb Exp $ * $Id: preferences.h,v 1.2 2001/02/24 02:45:36 mdb Exp $
*/ */
#ifndef _PREFERENCES_H_ #ifndef _PREFERENCES_H_
@@ -17,6 +17,6 @@ extern void
lk_prefs_cleanup (void); lk_prefs_cleanup (void);
extern void extern void
lk_prefs_display (); lk_prefs_display (void);
#endif /* _PREFERENCES_H_ */ #endif /* _PREFERENCES_H_ */