Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 894510
Collapse All | Expand All

(-)a/libfakeroot.c (-1 / +5 lines)
Lines 144-152 Link Here
144
   id_t is used everywhere, just happens to be int on some OSes */
144
   id_t is used everywhere, just happens to be int on some OSes */
145
#ifndef _ID_T
145
#ifndef _ID_T
146
#define _ID_T
146
#define _ID_T
147
#ifndef __DEFINED_id_t
147
typedef int id_t;
148
typedef int id_t;
148
#endif
149
#endif
149
#endif
150
#endif
151
#endif
150
152
151
#include <sys/types.h>
153
#include <sys/types.h>
152
#include <stdlib.h>
154
#include <stdlib.h>
153
-- a/libfakeroot.c
155
++ b/libfakeroot.c
Lines 81-92 Link Here
81
#define SEND_STAT64(a,b,c) send_stat64(a,b,c)
81
#define SEND_STAT64(a,b,c) send_stat64(a,b,c)
82
#define SEND_GET_STAT(a,b) send_get_stat(a,b)
82
#define SEND_GET_STAT(a,b) send_get_stat(a,b)
83
#define SEND_GET_STAT64(a,b) send_get_stat64(a,b)
83
#define SEND_GET_STAT64(a,b) send_get_stat64(a,b)
84
#define SEND_GET_XATTR(a,b,c) send_get_xattr(a,b,c)
84
#define SEND_GET_XATTR64(a,b,c) send_get_xattr64(a,b,c)
85
#define SEND_GET_XATTR64(a,b,c) send_get_xattr64(a,b,c)
85
#else
86
#else
86
#define SEND_STAT(a,b,c) send_stat(a,b)
87
#define SEND_STAT(a,b,c) send_stat(a,b)
87
#define SEND_STAT64(a,b,c) send_stat64(a,b)
88
#define SEND_STAT64(a,b,c) send_stat64(a,b)
88
#define SEND_GET_STAT(a,b) send_get_stat(a)
89
#define SEND_GET_STAT(a,b) send_get_stat(a)
89
#define SEND_GET_STAT64(a,b) send_get_stat64(a)
90
#define SEND_GET_STAT64(a,b) send_get_stat64(a)
91
#define SEND_GET_XATTR(a,b,c) send_get_xattr(a,b)
90
#define SEND_GET_XATTR64(a,b,c) send_get_xattr64(a,b)
92
#define SEND_GET_XATTR64(a,b,c) send_get_xattr64(a,b)
91
#endif
93
#endif
92
94

Return to bug 894510