Added missing properties.
[cake.git] / rom / battclock / resetbattclock.c
blob7183512af9576f1cacbc095dbf9952ae8d124bef
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: ResetBattClock()
6 Lang: english
7 */
8 #include "battclock_intern.h"
10 /*****************************************************************************
12 NAME */
13 #include <proto/battclock.h>
15 AROS_LH0(void, ResetBattClock,
17 /* SYNOPSIS */
18 /* void */
20 /* LOCATION */
21 APTR, BattClockBase, 1, Battclock)
23 /* FUNCTION
24 Reset the system battery backed up clock. This will reset the clock
25 back to 0 seconds (or midnight, 1st Jan 1978).
27 INPUTS
28 None.
30 RESULT
31 The clock will be reset.
33 NOTES
34 This function may do nothing when the battery backed up clock either
35 doesn't exist, or may not be writable by the operating system.
37 EXAMPLE
39 BUGS
41 SEE ALSO
42 ReadBattClock, WriteBattClock
44 INTERNALS
46 HISTORY
47 27-11-96 digulla automatically created from
48 battclock_lib.fd and clib/battclock_protos.h
50 *****************************************************************************/
52 AROS_LIBFUNC_INIT
54 return;
56 AROS_LIBFUNC_EXIT
57 } /* ResetBattClock */