NBSD libc: fix forgot weak_alias

This patch add a few weak_alias forgotten, so that non-internal
symbols are defined to be used from application.

Modifying only the minix-specific part, this patch needs no update
to minix-port.patch.
This commit is contained in:
Gianluca Guida 2011-03-03 16:44:18 +00:00
parent 6567e50a6f
commit 98af1ee195
3 changed files with 13 additions and 0 deletions

View File

@ -2,10 +2,15 @@
* 2 Dec 1994 * 2 Dec 1994
*/ */
#define nil 0 #define nil 0
#include "namespace.h"
#include <sys/types.h> #include <sys/types.h>
#include <unistd.h> #include <unistd.h>
#include <string.h> #include <string.h>
#ifdef __weak_alias
__weak_alias(getdomainname, _getdomainname)
#endif
int getdomainname(char *domain, size_t size) int getdomainname(char *domain, size_t size)
{ {
char nodename[256]; char nodename[256];

View File

@ -1,6 +1,10 @@
#include <sys/cdefs.h> #include <sys/cdefs.h>
#include "namespace.h" #include "namespace.h"
#ifdef __weak_alias
__weak_alias(bind, _bind)
#endif
#include <unistd.h> #include <unistd.h>
#include <stdint.h> #include <stdint.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -5,6 +5,10 @@
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#ifdef __weak_alias
__weak_alias(chown, _chown)
#endif
PUBLIC int chown(const char *name, uid_t owner, gid_t grp) PUBLIC int chown(const char *name, uid_t owner, gid_t grp)
{ {
message m; message m;