From: Andre Noll <maan@systemlinux.org>
Date: Sat, 22 Mar 2008 14:19:27 +0000 (+0100)
Subject: string.c: Include stdio instead of cmdline.h.
X-Git-Tag: v0.0.4~5
X-Git-Url: https://git.tue.mpg.de/?a=commitdiff_plain;h=bc6e45c682994cb326141d43dbba52176bcde78d;p=dss.git

string.c: Include stdio instead of cmdline.h.

The string helper functions really should not depend on the
command line parser.
---

diff --git a/string.c b/string.c
index afac002..91ad3e7 100644
--- a/string.c
+++ b/string.c
@@ -1,5 +1,6 @@
 #include <string.h>
 #include <stdlib.h>
+#include <stdio.h>
 #include <stdarg.h>
 #include <assert.h>
 #include <limits.h>
@@ -9,7 +10,6 @@
 #include <unistd.h>
 
 
-#include "cmdline.h"
 #include "gcc-compat.h"
 #include "log.h"
 #include "error.h"