Update.
[glibc.git] / include / ldsodefs.h
blobf171d4c7ea021d9f7ef313a5a34f9d83bff2b3c0
1 /* We must use the appropriate version for the system. */
2 #ifdef HAVE_ELF
3 # include <elf/ldsodefs.h>
4 #else
5 /* We have no dynamic loading. Define the macros we need here as dummy
6 versions. */
7 # ifndef _LDSODEFS_H
8 # define _LDSODEFS_H 1
10 /* Call a function through a pointer. */
11 # define _CALL_DL_FCT(fctp, args) (*fctp) args
12 # define DL_CALL_FCT(fctp, args) (*fctp) args
14 # endif /* ldsodefs.h */
15 #endif