1
0
Fork 0
mirror of https://repo.or.cz/socat.git synced 2025-07-13 23:13:24 +00:00

Support for NetBSD 5.1

This commit is contained in:
Gerhard Rieger 2014-11-23 15:03:54 +01:00
parent fb0246084a
commit 05c0b2873e
6 changed files with 20 additions and 2 deletions

View file

@ -1,12 +1,16 @@
/* source: dalan.c */
/* Copyright Gerhard Rieger 2001-2008 */
/* Copyright Gerhard Rieger */
/* Published under the GNU General Public License V.2, see file COPYING */
/* idea of a low level data description language. currently only a most
primitive subset exists. */
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#if HAVE_STDBOOL_H
#include <stdbool.h>
#endif
#include <ctype.h>
#include "dalan.h"