17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 57c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 67c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 77c478bd9Sstevel@tonic-gate * with the License. 87c478bd9Sstevel@tonic-gate * 97c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 107c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 117c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 127c478bd9Sstevel@tonic-gate * and limitations under the License. 137c478bd9Sstevel@tonic-gate * 147c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 157c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 167c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 177c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 187c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 197c478bd9Sstevel@tonic-gate * 207c478bd9Sstevel@tonic-gate * CDDL HEADER END 217c478bd9Sstevel@tonic-gate */ 227c478bd9Sstevel@tonic-gate /* 237c478bd9Sstevel@tonic-gate * Copyright 1987 Sun Microsystems, Inc. All rights reserved. 247c478bd9Sstevel@tonic-gate * Use is subject to license terms. 257c478bd9Sstevel@tonic-gate */ 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gate /* Copyright (c) 1984 AT&T */ 287c478bd9Sstevel@tonic-gate /* All Rights Reserved */ 297c478bd9Sstevel@tonic-gate 30*5d54f3d8Smuffin #ifndef __5include_time_h 31*5d54f3d8Smuffin #define __5include_time_h 327c478bd9Sstevel@tonic-gate 33*5d54f3d8Smuffin #pragma ident "%Z%%M% %I% %E% SMI" 347c478bd9Sstevel@tonic-gate 357c478bd9Sstevel@tonic-gate #include <sys/stdtypes.h> 367c478bd9Sstevel@tonic-gate 377c478bd9Sstevel@tonic-gate #ifndef NULL 387c478bd9Sstevel@tonic-gate #define NULL 0 397c478bd9Sstevel@tonic-gate #endif 407c478bd9Sstevel@tonic-gate 417c478bd9Sstevel@tonic-gate struct tm { /* see ctime(3) */ 427c478bd9Sstevel@tonic-gate int tm_sec; 437c478bd9Sstevel@tonic-gate int tm_min; 447c478bd9Sstevel@tonic-gate int tm_hour; 457c478bd9Sstevel@tonic-gate int tm_mday; 467c478bd9Sstevel@tonic-gate int tm_mon; 477c478bd9Sstevel@tonic-gate int tm_year; 487c478bd9Sstevel@tonic-gate int tm_wday; 497c478bd9Sstevel@tonic-gate int tm_yday; 507c478bd9Sstevel@tonic-gate int tm_isdst; 517c478bd9Sstevel@tonic-gate char *tm_zone; 527c478bd9Sstevel@tonic-gate long tm_gmtoff; 537c478bd9Sstevel@tonic-gate }; 547c478bd9Sstevel@tonic-gate 557c478bd9Sstevel@tonic-gate /* 567c478bd9Sstevel@tonic-gate * Following 2 lines are required to make CLK_TCK work. 577c478bd9Sstevel@tonic-gate * If they change here they have to change in <sys/unistd.h> as well. 587c478bd9Sstevel@tonic-gate */ 597c478bd9Sstevel@tonic-gate extern long sysconf(/* int name */); 607c478bd9Sstevel@tonic-gate #define _SC_CLK_TCK 3 /* clock ticks/sec */ 617c478bd9Sstevel@tonic-gate /* 627c478bd9Sstevel@tonic-gate * POSIX.1 uses CLK_TCK to specify units used by times(3). 637c478bd9Sstevel@tonic-gate * POSIX.1a doesn't use a name for this and says CLK_TCK is obsolescent, but 647c478bd9Sstevel@tonic-gate * we'll probably have to support it for a long time. 657c478bd9Sstevel@tonic-gate */ 667c478bd9Sstevel@tonic-gate #define CLK_TCK (sysconf(_SC_CLK_TCK)) 677c478bd9Sstevel@tonic-gate /* 881207 ANSI C draft uses CLOCKS_PER_SEC to specify units used by clock(3). */ 687c478bd9Sstevel@tonic-gate #define CLOCKS_PER_SEC 1000000L 697c478bd9Sstevel@tonic-gate 707c478bd9Sstevel@tonic-gate extern char * asctime(/* const struct tm *t */); 717c478bd9Sstevel@tonic-gate extern char * ctime(/* const time_t *t */); 727c478bd9Sstevel@tonic-gate extern struct tm * gmtime(/* const time_t *t */); 737c478bd9Sstevel@tonic-gate extern struct tm * localtime(/* const time_t *t */); 747c478bd9Sstevel@tonic-gate extern time_t mktime(/* struct tm *timeptr */); 757c478bd9Sstevel@tonic-gate extern size_t strftime(/* char *s, size_t maxsize, const char *format, 767c478bd9Sstevel@tonic-gate const struct tm *timeptr */); 777c478bd9Sstevel@tonic-gate extern time_t time(/* time_t *t */); 787c478bd9Sstevel@tonic-gate extern void tzset(/* void */); 797c478bd9Sstevel@tonic-gate 807c478bd9Sstevel@tonic-gate extern char *tzname[]; 817c478bd9Sstevel@tonic-gate #ifndef _POSIX_SOURCE 827c478bd9Sstevel@tonic-gate extern int daylight; 837c478bd9Sstevel@tonic-gate extern long timezone; 847c478bd9Sstevel@tonic-gate extern void tzsetwall(/* void */); 85*5d54f3d8Smuffin #endif /* !_POSIX_SOURCE */ 867c478bd9Sstevel@tonic-gate 87*5d54f3d8Smuffin #endif /* !__5include_time_h */ 88