From: Clemens Ladisch Date: Tue, 2 May 2006 13:38:46 +0000 (+0200) Subject: qlo10k1: use stdlib.h for malloc()/free() X-Git-Tag: v1.0.12rc1~3 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=ec25bb1219e7ea04e0ff7d4ecc8e0b263f90f51c;p=alsa-tools.git qlo10k1: use stdlib.h for malloc()/free() Some qlo10k1 files need for malloc() and free(); it seems not all Qt headers include them by default. --- diff --git a/qlo10k1/src/ld10k1file.cpp b/qlo10k1/src/ld10k1file.cpp index 5742d61..c85e709 100644 --- a/qlo10k1/src/ld10k1file.cpp +++ b/qlo10k1/src/ld10k1file.cpp @@ -19,6 +19,7 @@ * */ +#include #include "ld10k1file.h" class EMU10k1FilePrivate diff --git a/qlo10k1/src/strglobal.cpp b/qlo10k1/src/strglobal.cpp index b3b322c..e5bc7d9 100644 --- a/qlo10k1/src/strglobal.cpp +++ b/qlo10k1/src/strglobal.cpp @@ -19,6 +19,7 @@ * */ +#include #include "strglobal.h" #include "strparam.h" #include "structure.h" diff --git a/qlo10k1/src/strparam.cpp b/qlo10k1/src/strparam.cpp index 9f0653d..b042d75 100644 --- a/qlo10k1/src/strparam.cpp +++ b/qlo10k1/src/strparam.cpp @@ -19,6 +19,7 @@ * */ +#include #include #include "strglobal.h"