mbed OS5

Fork of UIPEthernet by Zoltan Hudak

Committer:
hudakz
Date:
Thu Nov 20 21:26:54 2014 +0000
Revision:
1:01c2344f98a3
Parent:
uitility/clock-arch.c@0:5350a66d5279
rev. 01

Who changed what in which revision?

UserRevisionLine numberNew contents of line
hudakz 0:5350a66d5279 1 /*
hudakz 0:5350a66d5279 2 clock-arch.c - mbed implementation of uIP clock device.
hudakz 0:5350a66d5279 3 Copyright (c) 2010 Adam Nielsen <malvineous@shikadi.net>
hudakz 0:5350a66d5279 4 All rights reserved.
hudakz 0:5350a66d5279 5
hudakz 0:5350a66d5279 6 Modified (ported to mbed) by Zoltan Hudak <hudakz@inbox.com>
hudakz 0:5350a66d5279 7
hudakz 0:5350a66d5279 8 This library is free software; you can redistribute it and/or
hudakz 0:5350a66d5279 9 modify it under the terms of the GNU Lesser General Public
hudakz 0:5350a66d5279 10 License as published by the Free Software Foundation; either
hudakz 0:5350a66d5279 11 version 2.1 of the License, or (at your option) any later version.
hudakz 0:5350a66d5279 12
hudakz 0:5350a66d5279 13 This library is distributed in the hope that it will be useful,
hudakz 0:5350a66d5279 14 but WITHOUT ANY WARRANTY; without even the implied warranty of
hudakz 0:5350a66d5279 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
hudakz 0:5350a66d5279 16 Lesser General Public License for more details.
hudakz 0:5350a66d5279 17
hudakz 0:5350a66d5279 18 You should have received a copy of the GNU Lesser General Public
hudakz 0:5350a66d5279 19 License along with this library; if not, write to the Free Software
hudakz 0:5350a66d5279 20 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
hudakz 0:5350a66d5279 21 */
hudakz 0:5350a66d5279 22 #include <time.h>
hudakz 0:5350a66d5279 23 #include "clock-arch.h"
hudakz 0:5350a66d5279 24
hudakz 0:5350a66d5279 25 /**
hudakz 0:5350a66d5279 26 * @brief
hudakz 0:5350a66d5279 27 * @note
hudakz 0:5350a66d5279 28 * @param
hudakz 0:5350a66d5279 29 * @retval
hudakz 0:5350a66d5279 30 */
hudakz 0:5350a66d5279 31 clock_time_t clock_time(void) {
hudakz 0:5350a66d5279 32 return(clock_time_t) time(NULL);
hudakz 0:5350a66d5279 33 }
hudakz 0:5350a66d5279 34
hudakz 0:5350a66d5279 35