summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2009-10-22 11:17:25 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2009-10-22 11:17:25 +0200
commit14eb08260698b6263f8d9583596474fd8c62acc5 (patch)
tree9f46926f4ec4e9df50716cd652606ab84619fc34 /include
parent6647b583b77c0ea3164c4a8d23d708251b0dbea2 (diff)
downloadbarebox-14eb08260698b6263f8d9583596474fd8c62acc5.tar.gz
barebox-14eb08260698b6263f8d9583596474fd8c62acc5.tar.xz
hush: remove include/hush.h
Everything in include/hush.h is only used in hush.c, so remove the header file. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/hush.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/include/hush.h b/include/hush.h
deleted file mode 100644
index 40dde82561..0000000000
--- a/include/hush.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * (C) Copyright 2001
- * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
- *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
- */
-
-#ifndef _HUSH_H_
-#define _HUSH_H_
-
-#define FLAG_EXIT_FROM_LOOP 1
-#define FLAG_PARSE_SEMICOLON (1 << 1) /* symbol ';' is special for parser */
-#define FLAG_REPARSING (1 << 2) /* >=2nd pass */
-
-#endif