source: rtems/testsuites/psxtests/psxhdrs/time08.c @ 077184fd

4.115
Last change on this file since 077184fd was 077184fd, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/12/11 at 04:19:11

2011-10-12 Ralf Corsépius <ralf.corsepius@…>

  • psxhdrs/time01.c, psxhdrs/time02.c, psxhdrs/time03.c, psxhdrs/time04.c, psxhdrs/time05.c, psxhdrs/time06.c, psxhdrs/time07.c, psxhdrs/time08.c, psxhdrs/time09.c, psxhdrs/time10.c, psxhdrs/time11.c, psxhdrs/time12.c, psxhdrs/time13.c: Let test() return values (avoid warnings).
  • Property mode set to 100644
File size: 599 bytes
Line 
1/*
2 *  This test file is used to verify that the header files associated with
3 *  invoking this function are correct.
4 *
5 *  COPYRIGHT (c) 1989-2009.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#ifdef HAVE_CONFIG_H
16#include "config.h"
17#endif
18
19#include <time.h>
20
21int test( void );
22
23int test( void )
24{
25  time_t     time;
26  struct tm *timestruct;
27
28  timestruct = gmtime( &time );
29
30  return (timestruct != NULL);
31}
Note: See TracBrowser for help on using the repository browser.