mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-18 23:32:17 -08:00
TARGET_OS_IPHONE is always defined, but may have value 0
This commit is contained in:
parent
0e05a7f360
commit
5eda224bdc
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ extern char **environ;
|
|||
cl_object
|
||||
si_system(cl_object cmd_string)
|
||||
{
|
||||
#if !defined(HAVE_SYSTEM) || defined(TARGET_OS_IPHONE)
|
||||
#if !defined(HAVE_SYSTEM) || (defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE)
|
||||
FElibc_error("si_system not implemented",1);
|
||||
@(return ECL_NIL);
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue