19 lines
416 B
C
19 lines
416 B
C
/*
|
||
* Copyright (c) 2023–2024 Emma Tebibyte <emma@tebibyte.media>
|
||
* Copyright (c) 2024 DTB <trinity@trinity.moe>
|
||
* SPDX-License-Identifier: CC0
|
||
*
|
||
* This work is marked with CC0 1.0. To view a copy of this license, visit
|
||
* <http://creativecommons.org/publicdomain/zero/1.0>.
|
||
*/
|
||
|
||
#ifdef __OpenBSD__
|
||
# include <unistd.h> /* pledge(2) */
|
||
#endif
|
||
|
||
int main(void) {
|
||
#ifdef __OpenBSD__
|
||
pledge(NULL, NULL);
|
||
#endif
|
||
}
|