mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
_MSC_VER malloc.h missing from common.c, gb18030.c, gb2312.c, sjis.c
This commit is contained in:
parent
3bda3b6213
commit
729b55b607
@ -32,6 +32,9 @@
|
||||
/* vim: set ts=4 sw=4 et : */
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#ifdef _MSC_VER
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include "common.h"
|
||||
|
||||
/* Local replacement for strlen() with unsigned char strings */
|
||||
|
@ -53,6 +53,9 @@
|
||||
* If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include <string.h>
|
||||
#ifdef _MSC_VER
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include "common.h"
|
||||
#include "gb2312.h"
|
||||
#include "gb18030.h"
|
||||
|
@ -53,6 +53,9 @@
|
||||
* If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include <string.h>
|
||||
#ifdef _MSC_VER
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include "common.h"
|
||||
#include "gb2312.h"
|
||||
|
||||
|
@ -53,6 +53,9 @@
|
||||
* If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include <string.h>
|
||||
#ifdef _MSC_VER
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include "common.h"
|
||||
#include "sjis.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user