15 lines
287 B
C
15 lines
287 B
C
|
/*
|
||
|
* Copyright 2021 Haiku, Inc. All Rights Reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _STDC_PREDEF_H
|
||
|
#define _STDC_PREDEF_H
|
||
|
|
||
|
|
||
|
#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
||
|
# define __STDC_NO_THREADS__ 1
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif /* _STDC_PREDEF_H */
|