mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 05:50:14 +00:00
Update
1999-05-13 Ulrich Drepper <drepper@cygnus.com> * sysdeps/gnu/getutmpx.c: New file. * sysdeps/gnu/getutmp.c: New file.
This commit is contained in:
parent
6eb857c788
commit
c22ecc5269
@ -1,3 +1,8 @@
|
||||
1999-05-13 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* sysdeps/gnu/getutmpx.c: New file.
|
||||
* sysdeps/gnu/getutmp.c: New file.
|
||||
|
||||
1999-05-13 H.J. Lu <hjl@gnu.org>
|
||||
|
||||
* login/Versions (getutmpx): Added to GLIBC_2.1.1.
|
||||
|
30
sysdeps/gnu/getutmp.c
Normal file
30
sysdeps/gnu/getutmp.c
Normal file
@ -0,0 +1,30 @@
|
||||
/* Copyright (C) 1999 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
|
||||
modify it under the terms of the GNU Library General Public License as
|
||||
published by the Free Software Foundation; either version 2 of the
|
||||
License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Library General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Library General Public
|
||||
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
||||
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
#include <utmp.h>
|
||||
#include <utmpx.h>
|
||||
|
||||
void
|
||||
getutmp (const struct utmpx *utmpx, struct utmp *utmp)
|
||||
{
|
||||
assert (sizeof (struct utmp) == sizeof (struct utmpx));
|
||||
memcpy (utmp, utmpx, sizeof (struct utmp));
|
||||
}
|
||||
strong_alias (getutmp, getutmpx)
|
1
sysdeps/gnu/getutmpx.c
Normal file
1
sysdeps/gnu/getutmpx.c
Normal file
@ -0,0 +1 @@
|
||||
/* We don't need a separate version. it is the same as getutmp(). */
|
Loading…
Reference in New Issue
Block a user