aboutsummaryrefslogtreecommitdiffstats
path: root/src/libtrace/musl_defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libtrace/musl_defs.h')
-rw-r--r--src/libtrace/musl_defs.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/libtrace/musl_defs.h b/src/libtrace/musl_defs.h
deleted file mode 100644
index 02eb65b83..000000000
--- a/src/libtrace/musl_defs.h
+++ /dev/null
@@ -1,52 +0,0 @@
1/*
2 * Copyright (C) 2014, 2015 Firejail Authors
3 *
4 * This file is part of firejail project
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19*/
20
21#ifndef _MUSL_DEFS_H
22#define _MUSL_DEFS_H
23
24#include <features.h>
25
26#define __NEED_FILE
27#define __NEED_dev_t
28#define __NEED_ino_t
29#define __NEED_mode_t
30#define __NEED_nlink_t
31#define __NEED_uid_t
32#define __NEED_gid_t
33#define __NEED_off_t
34#define __NEED_time_t
35#define __NEED_blksize_t
36#define __NEED_blkcnt_t
37#define __NEED_struct_timespec
38
39#include <bits/alltypes.h>
40#include <bits/stat.h>
41
42#ifdef __cplusplus
43#define NULL 0L
44#else
45#define NULL ((void*)0)
46#endif
47
48int printf(const char *format, ...);
49int sprintf(char *buffer, const char *format, ...);
50char *fgets(char *buffer, int size, FILE *fp);
51
52#endif