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