diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-07-01 18:07:39 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-07-01 18:07:42 -0700 |
commit | 79eee2354907010045d64c05b3a008cffda2c952 (patch) | |
tree | 4acaeddabc0f11580a16e5d6c9829b9a43f22267 | |
parent | 2dd98f64c53a6353716982d2e69c3c493a6b9f78 (diff) |
Call snprintf directly, instead of via XmuSnprintf
We could add an autoconf check to fix the old #ifdef HAS_SNPRINTF test
here, but all platforms we support today have a native snprintf anyway.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | xgc.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -61,11 +61,6 @@ typedef struct { WidgetList widgets; } ChoiceDesc; -#ifndef HAS_SNPRINTF -#include <X11/Xmu/SysUtil.h> -#define snprintf XmuSnprintf -#endif - /************/ extern XStuff X; |