File: missing-prototype

package info (click to toggle)
palbart 2.14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 436 kB
  • sloc: ansic: 6,023; makefile: 41; sh: 14
file content (16 lines) | stat: -rw-r--r-- 646 bytes parent folder | download
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 );