mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 19:00:07 +00:00
10411f2d14
* include/ldsodefs.h: Fix typo.
16 lines
409 B
C
16 lines
409 B
C
/* We must use the appropriate version for the system. */
|
|
#ifdef __ELF__
|
|
# include <elf/ldsodefs.h>
|
|
#else
|
|
/* We have no dynamic loading. Define the macros we need here as dummy
|
|
versions. */
|
|
# ifndef _LDSODEFS_H
|
|
# define _LDSODEFS_H 1
|
|
|
|
/* Call a function through a pointer. */
|
|
# define _CALL_DL_FCT(fctp, args) (*fctp) args
|
|
# define DL_CALL_FCT(fctp, args) (*fctp) args
|
|
|
|
# endif /* ldsodefs.h */
|
|
#endif
|