about summary refs log tree commit diff
path: root/misc
diff options
context:
space:
mode:
authorMarek Polacek <polacek@redhat.com>2012-05-31 13:10:02 +0200
committerMarek Polacek <polacek@redhat.com>2012-05-31 13:10:02 +0200
commit3091725976856160a5427b03a9586af534b63750 (patch)
treeef9fb10b1cbb578e99d005260b0cc2c8b5d5db91 /misc
parent1c58d5dcebbc41172316b3d28ee3fc58cf09aa13 (diff)
downloadglibc-3091725976856160a5427b03a9586af534b63750.tar.gz
glibc-3091725976856160a5427b03a9586af534b63750.tar.xz
glibc-3091725976856160a5427b03a9586af534b63750.zip
Remove use of INTUSE/INTDEF in misc.
Diffstat (limited to 'misc')
-rw-r--r--misc/mntent_r.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/misc/mntent_r.c b/misc/mntent_r.c
index 43f3a980a4..5a47f33112 100644
--- a/misc/mntent_r.c
+++ b/misc/mntent_r.c
@@ -1,6 +1,5 @@
 /* Utilities for reading/writing fstab, mtab, etc.
-   Copyright (C) 1995-2000, 2001, 2002, 2003, 2006, 2010, 2011
-   Free Software Foundation, Inc.
+   Copyright (C) 1995-2012 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
@@ -49,7 +48,7 @@ __setmntent (const char *file, const char *mode)
 
   return result;
 }
-INTDEF(__setmntent)
+libc_hidden_def (__setmntent)
 weak_alias (__setmntent, setmntent)
 
 
@@ -61,7 +60,7 @@ __endmntent (FILE *stream)
     fclose (stream);
   return 1;		/* SunOS 4.x says to always return 1 */
 }
-INTDEF(__endmntent)
+libc_hidden_def (__endmntent)
 weak_alias (__endmntent, endmntent)
 
 
@@ -178,7 +177,7 @@ __getmntent_r (FILE *stream, struct mntent *mp, char *buffer, int bufsiz)
 
   return mp;
 }
-INTDEF(__getmntent_r)
+libc_hidden_def (__getmntent_r)
 weak_alias (__getmntent_r, getmntent_r)