summaryrefslogtreecommitdiff
path: root/lib/libc/stdtime/asctime.c
Commit message (Collapse)AuthorAgeFilesLines
* Split the contributed code from libc/stdtime from lib/libc/stdtimeEdwin Groothuis2010-02-261-142/+0
| | | | | | | to contrib/tzcode/stdtime. Notes: svn path=/head/; revision=204347
* MFV of tzcode2009e:Edwin Groothuis2009-05-231-21/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade of the tzcode from 2004a to 2009e. Changes are numerous, but include... - New format of the output of zic, which supports both 32 and 64 bit time_t formats. - zdump on 64 bit platforms will actually produce some output instead of doing nothing for a looooooooong time. - linux_base-fX, with X >= at least 8, will work without problems related to the local time again. The original patch, based on the 2008e, has been running for a long time on both my laptop and desktop machine and have been tested by other people. After the installation of this code and the running of zic(8), you need to run tzsetup(8) again to install the new datafile. Approved by: wollman@ for usr.sbin/zic MFC after: 1 month Notes: svn path=/head/; revision=192625
* Merge changes from the tzcode2004a import. Wherever possible I tried to bringStefan Farfeleder2004-06-141-24/+28
| | | | | | | | | us closer to the vendor branch. Requested by: wollman Notes: svn path=/head/; revision=130461
* Eliminate 61 warnings emitted at WARNS=2 (leaving 53 to go).Jacques Vidrine2003-02-161-2/+2
| | | | | | | | | | Only warnings that could be fixed without changing the generated object code and without restructuring the source code have been handled. Reviewed by: /sbin/md5 Notes: svn path=/head/; revision=111010
* Fix the style of the SCM ID's.David E. O'Brien2002-03-221-2/+2
| | | | | | | I believe have made all of libc .c's as consistent as possible. Notes: svn path=/head/; revision=92986
* Remove 'register' keyword.David E. O'Brien2002-03-211-2/+2
| | | | Notes: svn path=/head/; revision=92889
* Remove _THREAD_SAFE and make libc thread-safe by default byDaniel Eischen2001-01-241-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | adding (weak definitions to) stubs for some of the pthread functions. If the threads library is linked in, the real pthread functions will pulled in. Use the following convention for system calls wrapped by the threads library: __sys_foo - actual system call _foo - weak definition to __sys_foo foo - weak definition to __sys_foo Change all libc uses of system calls wrapped by the threads library from foo to _foo. In order to define the prototypes for _foo(), we introduce namespace.h and un-namespace.h (suggested by bde). All files that need to reference these system calls, should include namespace.h before any standard includes, then include un-namespace.h after the standard includes and before any local includes. <db.h> is an exception and shouldn't be included in between namespace.h and un-namespace.h namespace.h will define foo to _foo, and un-namespace.h will undefine foo. Try to eliminate some of the recursive calls to MT-safe functions in libc/stdio in preparation for adding a mutex to FILE. We have recursive mutexes, but would like to avoid using them if possible. Remove uneeded includes of <errno.h> from a few files. Add $FreeBSD$ to a few files in order to pass commitprep. Approved by: -arch Notes: svn path=/head/; revision=71579
* Make ctime_r, asctime_r, gmtime_r, and localtime_r available in libc.Dmitrij Tejblum1999-01-041-7/+0
| | | | Notes: svn path=/head/; revision=42293
* Make asctime_r static if !_THREAD_SAFE to prevent namespace pollution andAndrey A. Chernov1998-04-251-0/+7
| | | | | | | prototype mismatch Notes: svn path=/head/; revision=35436
* ctime_r and asctime_r are not implemented.Poul-Henning Kamp1998-04-191-3/+12
| | | | | | | | | | | prototypes in time.h do not match POSIX. PR: 6345 Reviewed by: phk Submitted by: Dmitry Khrustalev <dima@xyzzy.machaon.ru> Notes: svn path=/head/; revision=35285
* Merge the recently-imported tzcode96h distribution (libc portion). TheGarrett Wollman1996-07-181-1/+5
| | | | | | | | | part that does zic(8)/zdump(8) is still yet to be imported (but the old zic and zdump will work just fine with these header files and the data format has not changed). Notes: svn path=/head/; revision=17209
* Removed false copyrights...Marc G. Fournier1996-05-271-34/+0
| | | | Notes: svn path=/head/; revision=15927
* Added in appropriate Berkeley copyright and RCS Id: stringMarc G. Fournier1996-05-271-0/+35
| | | | | | | Closes PR#doc/536 Notes: svn path=/head/; revision=15923
* The rest of tzcode94g from Arthur David Olson.Garrett Wollman1994-09-131-0/+56
Obtained From: Arthur David Olson, ftp://elsie.nci.nih.gov/pub/tzcode94g.tar.gz Notes: svn path=/vendor/tzcode/dist/; revision=2708