]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
fixed warnings on irix
authorAndrew Tridgell <tridge@samba.org>
Sat, 6 Apr 2002 06:48:28 +0000 (08:48 +0200)
committerAndrew Tridgell <tridge@samba.org>
Sat, 6 Apr 2002 06:48:28 +0000 (08:48 +0200)
ccache.h

index eb65dde43ea49552ff2a4bd1975c335d8ec8566e..347ab3660444be1b7df51d8cdb1fccb17bedce49 100644 (file)
--- a/ccache.h
+++ b/ccache.h
@@ -93,7 +93,13 @@ void stats_set_sizes(const char *dir, size_t num_files, size_t total_size);
 
 int unify_hash(const char *fname);
 
+#ifndef HAVE_VASPRINTF
+int vasprintf(char **, const char *, va_list );
+#endif
 
+#ifndef HAVE_SNPRINTF
+int snprintf(char *,size_t ,const char *, ...);
+#endif
 
 void cleanup_dir(const char *dir, size_t maxfiles, size_t maxsize);
 void cleanup_all(const char *dir);