DRAFT lib: Only provide dlopen, dlclose prototype for BOOTSTRAP.

* include/dlfcn.h (dlopen, dlclose)[!BOOTSTRAP]: Remove.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2022-11-03 07:36:21 +01:00
parent c90eea888d
commit c0dcbaa0a1
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
/* -*-comment-start: "//";comment-end:""-*-
* GNU Mes --- Maxwell Equations of Software
* Copyright © 2017 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
* Copyright © 2017,2022 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
*
* This file is part of GNU Mes.
*
@ -36,8 +36,10 @@
#define RTLD_NODELETE 0x01000
#define RTLD_DEFAULT 0
#if BOOTSTRAP
void *dlopen (char const *filename, int flags);
int dlclose (void *handle);
#endif
#endif // ! SYSTEM_LIBC