1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s3:lib: use includes.h with cbuf and srprs

hopefully fixes build on hpux

Signed-off-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Gregor Beck 2012-09-06 11:52:58 +02:00 committed by Stefan Metzmacher
parent 4931a9010f
commit 0f284beb67
3 changed files with 1 additions and 12 deletions

View File

@ -29,11 +29,6 @@
#ifndef __CBUF_H
#define __CBUF_H
#include <stddef.h>
#include <stdbool.h>
#include <stdint.h>
struct cbuf;
typedef struct cbuf cbuf;

View File

@ -24,12 +24,9 @@
* @brief A simple recursive parser.
*/
#include "includes.h"
#include "srprs.h"
#include "cbuf.h"
#include <ctype.h>
#include <string.h>
#include <assert.h>
#include <stdio.h>
bool srprs_skipws(const char** ptr) {
while (isspace(**ptr))

View File

@ -34,9 +34,6 @@
#ifndef __SRPRS_H
#define __SRPRS_H
#include <stddef.h>
#include <stdbool.h>
#include <stdint.h>
struct cbuf;
/**