summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/utmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/utmp.h')
-rw-r--r--sysdeps/unix/sysv/utmp.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/sysdeps/unix/sysv/utmp.h b/sysdeps/unix/sysv/utmp.h
deleted file mode 100644
index 4c3d33e987..0000000000
--- a/sysdeps/unix/sysv/utmp.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef _UTMP_H
-
-#define _UTMP_H 1
-
-#include <time.h>
-
-struct utmp
- {
-#define ut_name ut_user
- char ut_user[8];
- char ut_id[4];
- char ut_line[12];
- short ut_pid;
- short ut_type;
- struct exit_status
- {
- short e_termination;
- short e_exit;
- } ut_exit;
- time_t ut_time;
- };
-
-#endif /* utmp.h. */