summaryrefslogtreecommitdiffstats
path: root/compat.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-06-25 20:27:32 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-06-25 20:27:32 +0000
commit32312e0252cf41b07285c6b2facdad91533585da (patch)
tree04cb526764954a2665961341109f6bc8c2653aef /compat.h
parent802e129fd7b9c383e8fcad03caa051e0583c199f (diff)
vis compat stuff.
Diffstat (limited to 'compat.h')
-rw-r--r--compat.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/compat.h b/compat.h
index 7c3691e0..0329151f 100644
--- a/compat.h
+++ b/compat.h
@@ -1,4 +1,4 @@
-/* $Id: compat.h,v 1.2 2009-06-25 17:02:59 nicm Exp $ */
+/* $Id: compat.h,v 1.3 2009-06-25 20:27:31 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -113,6 +113,12 @@
#endif
#endif
+#ifdef HAVE_VIS
+#include <vis.h>
+#else
+#include "compat/vis.h"
+#endif
+
#ifndef HAVE_STRTONUM
/* strtonum.c */
long long strtonum(const char *, long long, long long, const char **);