home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / lastlog.h < prev    next >
C/C++ Source or Header  |  2004-01-30  |  377b  |  23 lines

  1. /* lastlog.h
  2.  
  3.    Copyright 2001 Red Hat, Inc.
  4.  
  5. This file is part of Cygwin.
  6.  
  7. This software is a copyrighted work licensed under the terms of the
  8. Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
  9. details. */
  10.  
  11. #ifndef _LASTLOG_H
  12. #define _LASTLOG_H
  13.  
  14. #include <utmp.h>
  15.  
  16. struct lastlog {
  17.     long ll_time;
  18.     char ll_line[UT_LINESIZE];
  19.     char ll_host[UT_HOSTSIZE];
  20. };
  21.  
  22. #endif
  23.