Commit | Line | Data |
2986a63f |
1 | |
2 | /* |
3 | * Copyright © 2001 Novell, Inc. All Rights Reserved. |
4 | * |
5 | * You may distribute under the terms of either the GNU General Public |
6 | * License or the Artistic License, as specified in the README file. |
7 | * |
8 | */ |
9 | |
10 | /* |
11 | * FILENAME : CLIBstuf.h |
12 | * DESCRIPTION : The purpose of clibstuf is to make sure that Perl, cgi2perl and |
13 | * all the perl extension nlm's (*.NLP) use the Novell Netware CLIB versions |
14 | * of standard functions. This code loads up a whole bunch of function pointers |
15 | * to point at the standard CLIB functions. |
16 | * Author : HYAK |
17 | * Date : January 2001. |
18 | * |
19 | */ |
20 | |
21 | |
22 | |
23 | #ifndef __CLIBstuf_H__ |
24 | #define __CLIBstuf_H__ |
25 | |
26 | |
27 | #ifdef __cplusplus |
28 | extern "C" |
29 | { |
30 | #endif |
31 | |
32 | void fnInitGpfGlobals(void); |
33 | |
34 | #ifdef __cplusplus |
35 | } |
36 | #endif |
37 | |
38 | |
39 | #endif // __CLIBstuf_H__ |
40 | |