aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_DCT.cc
diff options
context:
space:
mode:
authorThorsten Schöning <6223655+ams-tschoening@users.noreply.github.com>2019-03-12 15:05:29 +0100
committerJay Berkenbilt <jberkenbilt@users.noreply.github.com>2019-03-12 15:05:29 +0100
commit2c704b99a100728e35f1c78a37d686c5e2149b08 (patch)
treefefa89eaff0d4621eae2fe0d1adb9138f04a1451 /libqpdf/Pl_DCT.cc
parent2efec4ce7bb31524d55596051adfe9fc3d6dacb1 (diff)
downloadqpdf-2c704b99a100728e35f1c78a37d686c5e2149b08.tar.zst
Undefined functions because of missing std:: or header. (#295)
* [bcc32 Error] QPDF.cc(375): E2268 Call to undefined function 'atof' Full parser context QPDF.cc(358): parsing: void QPDF::parse(const char *) * [bcc32 Error] QPDFTokenizer.cc(183): E2268 Call to undefined function 'strtol' Full parser context QPDFTokenizer.cc(163): parsing: void QPDFTokenizer::resolveLiteral() * [bcc32 Error] pdf-split-pages.cc(52): E2268 Call to undefined function 'exit' Full parser context pdf-split-pages.cc(50): parsing: void usage() * PR #295: Including "cstdlib" should be replaced with "stdlib.h" to be more consistent. At the same time I changed the order of the surrounding includes to reflect alphabetical order, because at some files this already have been the case.
Diffstat (limited to 'libqpdf/Pl_DCT.cc')
-rw-r--r--libqpdf/Pl_DCT.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/libqpdf/Pl_DCT.cc b/libqpdf/Pl_DCT.cc
index 8e1a5177..ceecc518 100644
--- a/libqpdf/Pl_DCT.cc
+++ b/libqpdf/Pl_DCT.cc
@@ -2,10 +2,11 @@
#include <qpdf/QUtil.hh>
#include <qpdf/QTC.hh>
+
#include <setjmp.h>
-#include <string>
#include <stdexcept>
-#include <cstdlib>
+#include <stdlib.h>
+#include <string>
#if BITS_IN_JSAMPLE != 8
# error "qpdf does not support libjpeg built with BITS_IN_JSAMPLE != 8"