blob: 6f62e0ab568a524ef8e9c10d4f97c24b0b35d74e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* $OpenBSD: ld.h,v 1.2 2000/07/08 19:51:46 rahnds 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 *xmalloc(int size);
char *concat __P((const char *, const char *, const char *));
#define PAGSIZ __LDPGSZ
|