mirror of
https://github.com/ziglang/zig.git
synced 2025-12-07 06:43:07 +00:00
- combine *-macos-* → any-macos-any - SDK headers as a single tree support targeting multiple arch/versions - bump to SDK 14.0 (release candidate)
23 lines
393 B
C
Vendored
23 lines
393 B
C
Vendored
/*
|
|
* Copyright (c) 2000-2009 Apple, Inc. All rights reserved.
|
|
*/
|
|
/*
|
|
* Copyright (c) 1992 NeXT Computer, Inc.
|
|
*
|
|
*/
|
|
|
|
#ifndef _ARM_SIGNAL_
|
|
#define _ARM_SIGNAL_ 1
|
|
|
|
#if defined (__arm__) || defined (__arm64__)
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#ifndef _ANSI_SOURCE
|
|
typedef int sig_atomic_t;
|
|
#endif /* ! _ANSI_SOURCE */
|
|
|
|
#endif /* defined (__arm__) || defined (__arm64__) */
|
|
|
|
#endif /* _ARM_SIGNAL_ */
|