aboutsummaryrefslogtreecommitdiffstats
path: root/dfa.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2013-04-16 11:03:05 +0300
committerArnold D. Robbins <arnold@skeeve.com>2013-04-16 11:03:05 +0300
commita750e1f81cb2b153d5e9de5fef03737ab84fdee1 (patch)
treefbc83a6ea12b0a17e01b7c8a3662d90dc2bdc4d0 /dfa.c
parent07ec66899460f3a0439dfc6a3c0fd1e12afdb46a (diff)
downloadegawk-a750e1f81cb2b153d5e9de5fef03737ab84fdee1.tar.gz
egawk-a750e1f81cb2b153d5e9de5fef03737ab84fdee1.tar.bz2
egawk-a750e1f81cb2b153d5e9de5fef03737ab84fdee1.zip
Sync dfa with GNU grep.
Diffstat (limited to 'dfa.c')
-rw-r--r--dfa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dfa.c b/dfa.c
index df0dc4a1..54e0ae9d 100644
--- a/dfa.c
+++ b/dfa.c
@@ -1,5 +1,5 @@
/* dfa.c - deterministic extended regexp routines for GNU
- Copyright (C) 1988, 1998, 2000, 2002, 2004-2005, 2007-2012 Free Software
+ Copyright (C) 1988, 1998, 2000, 2002, 2004-2005, 2007-2013 Free Software
Foundation, Inc.
This program is free software; you can redistribute it and/or modify
@@ -65,8 +65,8 @@
#include "mbsupport.h" /* defines MBS_SUPPORT to 1 or 0, as appropriate */
#if MBS_SUPPORT
/* We can handle multibyte strings. */
-#include <wchar.h>
-#include <wctype.h>
+# include <wchar.h>
+# include <wctype.h>
#endif
#ifdef GAWK