ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/linker.h
Revision: 1.2
Committed: Sat Jul 21 01:29:07 2007 UTC (16 years, 10 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Changes since 1.1: +2 -2 lines
Log Message:
- moved to new documentation system
- fixed small build error

File Contents

# User Rev Content
1 pippijn 1.1 /*
2     * Copyright © 2005 William Pitcock <nenolod@nenolod.net>
3 pippijn 1.2 * Rights to this code are as documented in doc/pod/license.pod.
4 pippijn 1.1 *
5     * Dynamic linker.
6     *
7 pippijn 1.2 * $Id: linker.h,v 1.1 2007-07-19 08:24:50 pippijn Exp $
8 pippijn 1.1 */
9    
10     #ifndef LINKER_H
11     #define LINKER_H
12    
13     extern void *linker_open (char *path);
14     extern void *linker_open_ext (char *path);
15     extern void *linker_getsym (void *vptr, char *sym);
16     extern void linker_close (void *vptr);
17    
18     #endif