mirror of
https://github.com/samba-team/samba.git
synced 2025-12-11 08:23:49 +03:00
31 lines
497 B
C
31 lines
497 B
C
/*
|
|
a temporary includes file until I work on the ldb build system
|
|
*/
|
|
|
|
#ifndef _GNU_SOURCE
|
|
#define _GNU_SOURCE
|
|
#endif
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <ctype.h>
|
|
#include <fcntl.h>
|
|
#include <stdarg.h>
|
|
#include <signal.h>
|
|
#include <unistd.h>
|
|
#include <fnmatch.h>
|
|
#include <sys/time.h>
|
|
#include <time.h>
|
|
|
|
|
|
#ifndef _PRINTF_ATTRIBUTE
|
|
#define _PRINTF_ATTRIBUTE(a,b)
|
|
#endif
|
|
|
|
#include "ldb.h"
|
|
#include "tdb.h"
|
|
#include "proto.h"
|
|
|