aboutsummaryrefslogtreecommitdiffstats
path: root/src/path.h
diff options
context:
space:
mode:
authorAvuton Olrich <avuton@gmail.com>2006-08-20 00:50:44 +0000
committerAvuton Olrich <avuton@gmail.com>2006-08-20 00:50:44 +0000
commitf79a70d1b9bab78fca515ac9142607ce2414e333 (patch)
tree9b851a6298a000e1feee859f430c9ccc5c297ddd /src/path.h
parent9caade4eb11bc930f618650918db8b60b912c961 (diff)
downloadmpd-f79a70d1b9bab78fca515ac9142607ce2414e333.tar.gz
mpd-f79a70d1b9bab78fca515ac9142607ce2414e333.tar.xz
mpd-f79a70d1b9bab78fca515ac9142607ce2414e333.zip
Fix warnings for -Wmissing-prototypes
Add -Wmissing-prototypes if compiling with gcc Static where possible git-svn-id: https://svn.musicpd.org/mpd/trunk@4657 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/path.h')
-rw-r--r--src/path.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/path.h b/src/path.h
index e9fd36fa0..63267b730 100644
--- a/src/path.h
+++ b/src/path.h
@@ -25,9 +25,9 @@
extern const char *musicDir;
-void initPaths();
+void initPaths(void);
-void finishPaths();
+void finishPaths(void);
/* utf8ToFsCharset() and fsCharsetToUtf8()
* Each returns a static pointer to a dynamically allocated buffer
@@ -44,7 +44,7 @@ char *fsCharsetToUtf8(char *str);
void setFsCharset(char *charset);
-char *getFsCharset();
+char *getFsCharset(void);
/* relative music path to absolute music path
* char * passed is a static variable, so don't free it