mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 01:11:30 -05:00
14 lines
385 B
C
14 lines
385 B
C
|
|
#ifdef HAVE_CONFIG_H
|
||
|
|
#if defined (CONFIG_BROKETS)
|
||
|
|
/* We use <config.h> instead of "config.h" so that a compilation
|
||
|
|
using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
|
||
|
|
(which it would do because it found this file in $srcdir). */
|
||
|
|
#include <config.h>
|
||
|
|
#else
|
||
|
|
#include "config.h"
|
||
|
|
#endif
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include "version.h"
|
||
|
|
const char *version_string = "GNU textutils 1.9";
|