diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-16 16:31:15 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-16 16:31:15 -0400 |
commit | 24a60ffba1893a3506a6ed15fd4b26479d966cf3 (patch) | |
tree | 5b3ead7c1110b58b6c32829c48cff79cc346121a /src/utmpx/struct_utmpx.h | |
parent | 1c9b7df133f4130f7db4038d0b034418c5867ac1 (diff) |
rename non-compiled files to *.h
Diffstat (limited to 'src/utmpx/struct_utmpx.h')
-rw-r--r-- | src/utmpx/struct_utmpx.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/utmpx/struct_utmpx.h b/src/utmpx/struct_utmpx.h new file mode 100644 index 00000000..298a846e --- /dev/null +++ b/src/utmpx/struct_utmpx.h @@ -0,0 +1,14 @@ +#include <utmpx.h> + +struct utmpx { + char ut_user[]; + char ut_id[]; + char ut_line[]; + pid_t ut_pid; + short ut_type; + struct timeval ut_tv; +}; + +/* +XOPEN(400) +*/ |