diff options
author | Sam Spilsbury <smspillaz@XPS-FEDORA.(none)> | 2009-08-01 19:31:29 +0800 |
---|---|---|
committer | Sam Spilsbury <smspillaz@XPS-FEDORA.(none)> | 2009-08-01 19:31:29 +0800 |
commit | aa1d560e85bd1e6be246f136d7af1d1012f0ce7e (patch) | |
tree | a74f72c63bde055261cbbc24dfe853d5018aa888 /src | |
parent | 163094063fb8d5f049157d1d8f18139c5056fd37 (diff) | |
download | zcomp-aa1d560e85bd1e6be246f136d7af1d1012f0ce7e.tar.gz zcomp-aa1d560e85bd1e6be246f136d7af1d1012f0ce7e.tar.bz2 |
Include cstdio and others instead of their C counterparts for g++ 4.4 compatibilty
Diffstat (limited to 'src')
-rw-r--r-- | src/string.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/string.cpp b/src/string.cpp index 7ec0bec..898a89f 100644 --- a/src/string.cpp +++ b/src/string.cpp @@ -26,7 +26,8 @@ #include <compiz.h> #include <string.h> -#include <stdarg.h> +#include <cstdarg> +#include <cstdio> CompString compPrintf (const char *format, ...) { |