Version 0.3.37.1

* Non-maintainer upload
* Start a "friendly takeover" from Juan
* Closes: #127503,#280608 -- update man page typos
* Closes: #339348 -- fix putenv typo in ltrace.conf
* Closes: #257903 -- incorporate variable length args patch
* See "upstream" ChangeLog for other changes (mostly warning fixes)
* Update README to point to Alioth home: http://ltrace.alioth.debian.org
diff --git a/debug.h b/debug.h
index 90a10e5..f42dd73 100644
--- a/debug.h
+++ b/debug.h
@@ -1,6 +1,6 @@
 #include <features.h>
 
-void debug_(int level, char *file, int line, char *func, char *fmt, ...);
+void debug_(int level, char *file, int line, const char *func, char *fmt, ...);
 
 # define debug(level, expr...) debug_(level, __FILE__, __LINE__, DEBUG_FUNCTION, expr)