1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Add missing function prototype
Add prototype for clearLiteralTable() to avoid a compiler warning with the
warning options used when compiling the Debian package.
Author: Andreas Bombe <aeb@debian.org>
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/palbart.c
+++ b/palbart.c
@@ -408,6 +408,7 @@
/* Function Prototypes */
int binarySearch( char *name, int start, int symbol_count );
+void clearLiteralTable( void );
int compareSymbols( const void *a, const void *b );
void conditionFalse( void );
void conditionTrue( void );
|