1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2024-09-19 14:05:02 +01:00
notnotdnethack/include/config1.h
Ron Nazarov 748c72b6e1
Make glyph_t uint32_t instead of long
It does not need to be 64 bits wide.
2024-05-12 11:42:24 +01:00

17 lines
467 B
C

/* SCCS Id: @(#)config1.h 3.4 1999/12/05 */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* NetHack may be freely redistributed. See license for details. */
#ifndef CONFIG1_H
#define CONFIG1_H
#define _POSIX_C_SOURCE 200809L
#if defined(__linux__) && defined(__GNUC__) && !defined(_GNU_SOURCE)
/* ensure _GNU_SOURCE is defined before including any system headers */
# define _GNU_SOURCE
#endif
#include <stdint.h>
#endif /* CONFIG1_H */