summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Harris <bjh21@bjh21.me.uk>2007-02-04 23:41:42 +0000
committerBen Harris <bjh21@bjh21.me.uk>2007-02-04 23:41:42 +0000
commit74d333c2100599b88878202de63d87a76eb691ba (patch)
tree4ab20870441c3fbd4f78d5e85d18dbd7bebafb11
parenta6137380cf2e8711c2ec7a522e746e894aaea473 (diff)
downloadhalibut-74d333c2100599b88878202de63d87a76eb691ba.zip
halibut-74d333c2100599b88878202de63d87a76eb691ba.tar.gz
halibut-74d333c2100599b88878202de63d87a76eb691ba.tar.bz2
halibut-74d333c2100599b88878202de63d87a76eb691ba.tar.xz
Quell warnings about declared but undefined static functions by not declaring
them either. [originally from svn r7219]
-rw-r--r--winhelp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/winhelp.c b/winhelp.c
index 6ad2abb..26c87f3 100644
--- a/winhelp.c
+++ b/winhelp.c
@@ -198,9 +198,13 @@ static void whlp_file_add_char(struct file *f, int data);
static void whlp_file_add_short(struct file *f, int data);
static void whlp_file_add_long(struct file *f, int data);
static void whlp_file_add_cushort(struct file *f, int data);
+#if 0 /* currently unused */
static void whlp_file_add_csshort(struct file *f, int data);
+#endif
static void whlp_file_add_culong(struct file *f, int data);
+#if 0 /* currently unused */
static void whlp_file_add_cslong(struct file *f, int data);
+#endif
static void whlp_file_fill(struct file *f, int len);
static void whlp_file_seek(struct file *f, int pos, int whence);
static int whlp_file_offset(struct file *f);