blob: 52a8159adb0c2f459fc99e35ff14ff34c8a9b554 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef MANDOC_CONFIG_H
#define MANDOC_CONFIG_H
#if defined(__linux__) || defined(__MINT__)
# define _GNU_SOURCE /* strptime(), getsubopt() */
#endif
#include <sys/types.h>
#include <stdio.h>
|