summaryrefslogtreecommitdiff
path: root/source3/lib/srprs.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2018-04-25 11:53:00 +0200
committerJeremy Allison <jra@samba.org>2018-07-24 20:36:49 +0200
commita845e9614742dbde40070ab0f2589505ee0ed2aa (patch)
treee7b45063d865313af8903db3970c83bac3244673 /source3/lib/srprs.c
parent6a91ba4f7eacf2a2043068c3680a3bc47fb5d26c (diff)
downloadsamba-a845e9614742dbde40070ab0f2589505ee0ed2aa.tar.gz
lib: Remove an #include "includes.h"
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/lib/srprs.c')
-rw-r--r--source3/lib/srprs.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/lib/srprs.c b/source3/lib/srprs.c
index db0448c1788..80dbc96c854 100644
--- a/source3/lib/srprs.c
+++ b/source3/lib/srprs.c
@@ -24,9 +24,11 @@
* @brief A simple recursive parser.
*/
-#include "includes.h"
+#include "replace.h"
+#include "system/locale.h"
#include "srprs.h"
#include "cbuf.h"
+#include <assert.h>
bool srprs_skipws(const char** ptr) {
while (isspace(**ptr))