Loading...
include/utmp.h Libc-498 Libc-262
--- Libc/Libc-498/include/utmp.h
+++ Libc/Libc-262/include/utmp.h
@@ -1,22 +1,21 @@
 /*
- * Copyright (c) 2000, 2005, 2007 Apple Inc. All rights reserved.
+ * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
- * This file contains Original Code and/or Modifications of Original Code
- * as defined in and that are subject to the Apple Public Source License
- * Version 2.0 (the 'License'). You may not use this file except in
- * compliance with the License. Please obtain a copy of the License at
- * http://www.opensource.apple.com/apsl/ and read it before using this
- * file.
+ * The contents of this file constitute Original Code as defined in and
+ * are subject to the Apple Public Source License Version 1.1 (the
+ * "License").  You may not use this file except in compliance with the
+ * License.  Please obtain a copy of the License at
+ * http://www.apple.com/publicsource and read it before using this file.
  * 
- * The Original Code and all software distributed under the License are
- * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
+ * This Original Code and all software distributed under the License are
+ * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
- * Please see the License for the specific language governing rights and
- * limitations under the License.
+ * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.  Please see the
+ * License for the specific language governing rights and limitations
+ * under the License.
  * 
  * @APPLE_LICENSE_HEADER_END@
  */
@@ -63,23 +62,6 @@
 #ifndef	_UTMP_H_
 #define	_UTMP_H_
 
-/*
- * This header file is DEPRECATED and only provided for compatibility
- * with previous releases of Mac OS X.  Use of these structures, especially
- * in 64-bit computing, may corrupt the utmp, wtmp and lastlog files.
- *
- * Use the utmpx APIs instead.
- */
-
-#include <_types.h>
-#include <available.h>
-
-#ifndef _TIME_T
-#define _TIME_T
-typedef __darwin_time_t	time_t;
-#endif
-
-/* These files no longer exist in 10.5 and later */
 #define	_PATH_UTMP	"/var/run/utmp"
 #define	_PATH_WTMP	"/var/log/wtmp"
 #define	_PATH_LASTLOG	"/var/log/lastlog"
@@ -92,13 +74,13 @@
 	time_t	ll_time;
 	char	ll_line[UT_LINESIZE];
 	char	ll_host[UT_HOSTSIZE];
-}					__DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
+};
 
 struct utmp {
 	char	ut_line[UT_LINESIZE];
 	char	ut_name[UT_NAMESIZE];
 	char	ut_host[UT_HOSTSIZE];
 	long	ut_time;
-}					__DEPRECATED_IN_MAC_OS_X_VERSION_10_5_AND_LATER;
+};
 
 #endif /* !_UTMP_H_ */