tools/configure.sh: Another fix for the script. The last change only worked for Windows Cygwin; for Linux, it needed to remove some additional things from the defconfig file.

This commit is contained in:
Gregory Nutt
2017-10-01 14:24:57 -06:00
parent e505df2eb5
commit 9eca03b9be
5 changed files with 44 additions and 52 deletions
+4 -4
View File
@@ -64,11 +64,11 @@
/* NULL is usually defined in stddef.h (which includes this file) */
#ifndef NULL
/* SDCC is sensitive to NULL pointer type conversions, and C++ defines
* NULL as zero
*/
/* SDCC is sensitive to NULL pointer type conversions, and C++ defines
* NULL as zero
*/
# if defined(SDCC) || defined(__cplusplus)
# if defined(SDCC) || defined(__SDCC) || defined(__cplusplus)
# define NULL (0)
# else
# define NULL ((void*)0)