nightmaremail

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

tryutmpx.c (126B)


      1 #include <utmpx.h>
      2 
      3 int main(void)
      4 {
      5   struct utmpx ut;
      6   ut.ut_type = sizeof(ut.ut_line) + sizeof(ut.ut_user);
      7   return 0;
      8 }