ostype from sys-info
Posted: Sun Mar 25, 2012 6:36 pm
According to document, '(sys-info 9)' returns a following value:
It seems that values in the case of CYGWIN are different. and value of AIX missing from document.
Which is rgitht?
But in newlisp.c is written like this:Operating system constant:
linux=1, bsd=2, osx=3, solaris=4, cygwin=5, win32=6, os/2=7, tru64unix=9
Code: Select all
#ifdef CYGWIN
int opsys = 8;
#endif
#ifdef TRU64
int opsys = 9;
#endif
#ifdef AIX
int opsys = 10;
#endif
Which is rgitht?