aboutsummaryrefslogtreecommitdiff
blob: 9d2cfb0fa17ef8ab4ce7d6a9673bc683b2c2a173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * wrappers.h
 *
 * Function wrapping functions.
 *
 * Copyright 1999-2008 Gentoo Foundation
 * Licensed under the GPL-2
 */

#ifndef __WRAPPERS_H__
#define __WRAPPERS_H__

#include <libsandbox.h>

void *get_dlsym(const char *, const char *);

/* Wrapper for internal use of functions in libsandbox */
int libsb_open(const char *, int, ...);
char *libsb_getcwd(char *, size_t);

#endif /* __WRAPPERS_H__ */