about summary refs log tree commit diff
path: root/sysdeps/gnu
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-05-13 19:55:50 +0000
committerUlrich Drepper <drepper@redhat.com>1999-05-13 19:55:50 +0000
commitc22ecc52699cbc60f83b2a7ab49cec5992d850cd (patch)
treea7cfbf3f84031dbc2f15a0e530bae169204604d5 /sysdeps/gnu
parent6eb857c78875a3640508f19f2afb2fc28c5829f2 (diff)
downloadglibc-c22ecc52699cbc60f83b2a7ab49cec5992d850cd.tar.gz
glibc-c22ecc52699cbc60f83b2a7ab49cec5992d850cd.tar.xz
glibc-c22ecc52699cbc60f83b2a7ab49cec5992d850cd.zip
Update
1999-05-13  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/gnu/getutmpx.c: New file.
	* sysdeps/gnu/getutmp.c: New file.
Diffstat (limited to 'sysdeps/gnu')
-rw-r--r--sysdeps/gnu/getutmp.c30
-rw-r--r--sysdeps/gnu/getutmpx.c1
2 files changed, 31 insertions, 0 deletions
diff --git a/sysdeps/gnu/getutmp.c b/sysdeps/gnu/getutmp.c
new file mode 100644
index 0000000000..ab21863271
--- /dev/null
+++ b/sysdeps/gnu/getutmp.c
@@ -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)
diff --git a/sysdeps/gnu/getutmpx.c b/sysdeps/gnu/getutmpx.c
new file mode 100644
index 0000000000..f393734a63
--- /dev/null
+++ b/sysdeps/gnu/getutmpx.c
@@ -0,0 +1 @@
+/* We don't need a separate version.  it is the same as getutmp().  */