
| Current Path : /proc/thread-self/root/usr/include/gap/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //proc/thread-self/root/usr/include/gap/src/sysenv.h |
/**************************************************************************** ** ** This file is part of GAP, a system for computational discrete algebra. ** ** Copyright of GAP belongs to its developers, whose names are too numerous ** to list here. Please refer to the COPYRIGHT file for details. ** ** SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef GAP_SYSENV_H #define GAP_SYSENV_H #ifdef SYS_IS_CYGWIN32 // cygwin declares environ in unistd.h #include <unistd.h> #elif defined(__APPLE__) #include <crt_externs.h> #define environ (*_NSGetEnviron()) #elif !defined(environ) extern char ** environ; #endif #endif // GAP_SYSENV_H