blob: 30abc5c7bbaccda496fcc04ff407031a5e43ad2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* $OpenBSD: ld.h,v 1.5 2002/05/24 00:25:42 ericj Exp $ */
/*
* Header file to make code compatible with ELF version
* ldconfig was taken from the a.out ld.
*/
#include <link.h>
extern int n_search_dirs;
extern char **search_dirs;
char *xstrdup(const char *);
void *xmalloc(size_t);
void *xrealloc(void *, size_t);
char *concat(const char *, const char *, const char *);
#define PAGSIZ __LDPGSZ
|