]> sourceware.org Git - glibc.git/commitdiff
* include/sys/utsname.h: Use libc_hidden_proto for uname, __uname.
authorRoland McGrath <roland@gnu.org>
Mon, 5 Aug 2002 22:47:19 +0000 (22:47 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 5 Aug 2002 22:47:19 +0000 (22:47 +0000)
* sysdeps/generic/uname.c: Add libc_hidden_def.
* sysdeps/mach/hurd/uname.c: Likewise.

ChangeLog
include/sys/utsname.h
sysdeps/generic/uname.c
sysdeps/mach/hurd/uname.c

index 3f384d4c65cc2c905d7e80199eb67f9e17e1fdda..b185bfad985c00501ee586c943be650d1e6ecc5b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-08-05  Roland McGrath  <roland@redhat.com>
+
+       * include/sys/utsname.h: Use libc_hidden_proto for uname, __uname.
+       * sysdeps/generic/uname.c: Add libc_hidden_def.
+       * sysdeps/mach/hurd/uname.c: Likewise.
+
 2002-08-05  Jakub Jelinek  <jakub@redhat.com>
 
         * include/wchar.h (wcrtomb, wcscmp, wcsftime, wcsspn, wcschr, wcscoll,
index 39ca7f57402d49b18d45882f1984aeed984f8459..a6b4ceb97e2849f33e54c99606f91b6ea6cd8f44 100644 (file)
@@ -2,4 +2,7 @@
 #include <posix/sys/utsname.h>
 
 extern int __uname (struct utsname *__name);
+
+libc_hidden_proto (uname)
+libc_hidden_proto (__uname)
 #endif
index 0c82de50207106ae3f56f5d66312c35b46acb074..e7c41648ed7431ff7d3c933eb7a0f2c013ecc333 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1992, 1996, 1997, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991,92,96,97,2000,02 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -62,3 +62,5 @@ __uname (name)
   return 0;
 }
 weak_alias (__uname, uname)
+libc_hidden_def (__uname)
+libc_hidden_def (uname)
index 9ea5f7098ee01f57e4beb5426ab337143b9daae8..8077e14979781fd374a44a5c42e6d42ebb6fc39f 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1992,1993,1994,1996,1997,2000 Free Software Foundation, Inc.
+/* Copyright (C) 1992,93,94,96,97,2000,02 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -44,3 +44,5 @@ __uname (struct utsname *uname)
   return 0;
 }
 weak_alias (__uname, uname)
+libc_hidden_def (__uname)
+libc_hidden_def (uname)
This page took 0.055453 seconds and 5 git commands to generate.