From 26262bc29e3860fe92c2532ab2ca11aa62a901aa Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 15 May 1999 09:31:40 +0000 Subject: Update. 1999-05-15 Ulrich Drepper * sysdeps/gnu/utmpx.h: Add needed type definitions according to Unix98. Add forward declaration of struct utmp. --- ChangeLog | 5 +++++ sysdeps/gnu/utmpx.h | 26 ++++++++++++++++++++------ 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 50ead62c2d..2aadaf0f77 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-05-15 Ulrich Drepper + + * sysdeps/gnu/utmpx.h: Add needed type definitions according to + Unix98. Add forward declaration of struct utmp. + 1999-05-14 Ulrich Drepper * nis/nis_getservlist.c (nis_getservlist): Use malloc instead of diff --git a/sysdeps/gnu/utmpx.h b/sysdeps/gnu/utmpx.h index 64fac6292c..916a2c5936 100644 --- a/sysdeps/gnu/utmpx.h +++ b/sysdeps/gnu/utmpx.h @@ -1,6 +1,5 @@ -/* Copyright (C) 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Mark Kettenis , 1997. 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 @@ -21,8 +20,13 @@ #define _UTMPX_H 1 #include +#include -__BEGIN_DECLS +/* Required according to Unix98. */ +#ifndef pid_t +typedef __pid_t pid_t; +# define pid_t pid_t +#endif /* Get system dependent values and data structures. */ #include @@ -35,6 +39,14 @@ __BEGIN_DECLS # define WTMPX_FILENAME _PATH_WTMPX #endif +/* For the getutmp{,x} functions we need the `struct utmp'. */ +#ifdef __USE_GNU +struct utmp; +#endif + + +__BEGIN_DECLS + /* Open user accounting database. */ extern void setutxent __P ((void)); @@ -45,13 +57,14 @@ extern void endutxent __P ((void)); extern struct utmpx *getutxent __P ((void)); /* Get the user accounting database entry corresponding to ID. */ -extern struct utmpx *getutxid __P ((const struct utmpx *__id)); +extern struct utmpx *getutxid __P ((__const struct utmpx *__id)); /* Get the user accounting database entry corresponding to LINE. */ -extern struct utmpx *getutxline __P ((const struct utmpx *__line)); +extern struct utmpx *getutxline __P ((__const struct utmpx *__line)); /* Write the entry UTMPX into the user accounting database. */ -extern struct utmpx *pututxline __P ((const struct utmpx *__utmpx)); +extern struct utmpx *pututxline __P ((__const struct utmpx *__utmpx)); + #ifdef __USE_GNU /* Change name of the utmpx file to be examined. */ @@ -61,6 +74,7 @@ extern int utmpxname __P ((__const char *__file)); extern void updwtmpx __P ((__const char *__wtmpx_file, __const struct utmpx *__utmpx)); + /* Copy the information in UTMPX to UTMP. */ extern void getutmp __P ((__const struct utmpx *__utmpx, struct utmp *__utmp)); -- cgit 1.4.1