diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2014-11-22 18:41:45 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2014-11-22 18:41:45 +0000 |
commit | f3316d36985ad16f1d82aea44eddc311cb739d6d (patch) | |
tree | 82f3a6c450ec8394baa9b588962d4497e7a704a4 /lib/pm.h | |
parent | 09bcfca6b8a98a40a1895ae8a66dd3fc1344a966 (diff) | |
download | netpbm-mirror-f3316d36985ad16f1d82aea44eddc311cb739d6d.tar.gz netpbm-mirror-f3316d36985ad16f1d82aea44eddc311cb739d6d.tar.xz netpbm-mirror-f3316d36985ad16f1d82aea44eddc311cb739d6d.zip |
Fix %g for platform without vasprintf (but scores of %f still exist)
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2320 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'lib/pm.h')
-rw-r--r-- | lib/pm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/pm.h b/lib/pm.h index 72ecc919..a24ea7bb 100644 --- a/lib/pm.h +++ b/lib/pm.h @@ -23,6 +23,8 @@ #include <sys/stat.h> #include <fcntl.h> +#include "pm_c_util.h" + #ifdef __cplusplus extern "C" { #endif @@ -219,6 +221,9 @@ pm_errormsg(const char format[], ...); void PM_GNU_PRINTF_ATTR(1,2) pm_error (const char reason[], ...); +bool +pm_have_float_format(void); + /* Obsolete - use shhopt and user's manual instead */ void pm_usage (const char usage[]); |