strpftime-test.h revision 178825
1184588Sdfr/*
2184588Sdfr * Copyright (c) 2007 Kungliga Tekniska H�gskolan
3184588Sdfr * (Royal Institute of Technology, Stockholm, Sweden).
4184588Sdfr * All rights reserved.
5184588Sdfr *
6184588Sdfr * Redistribution and use in source and binary forms, with or without
7184588Sdfr * modification, are permitted provided that the following conditions
8184588Sdfr * are met:
9184588Sdfr *
10184588Sdfr * 1. Redistributions of source code must retain the above copyright
11184588Sdfr *    notice, this list of conditions and the following disclaimer.
12184588Sdfr *
13184588Sdfr * 2. Redistributions in binary form must reproduce the above copyright
14184588Sdfr *    notice, this list of conditions and the following disclaimer in the
15184588Sdfr *    documentation and/or other materials provided with the distribution.
16184588Sdfr *
17184588Sdfr * 3. Neither the name of KTH nor the names of its contributors may be
18184588Sdfr *    used to endorse or promote products derived from this software without
19184588Sdfr *    specific prior written permission.
20184588Sdfr *
21184588Sdfr * THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY
22184588Sdfr * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23184588Sdfr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24184588Sdfr * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE
25184588Sdfr * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26184588Sdfr * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27249592Sken * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28249592Sken * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29249592Sken * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30249592Sken * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
31249592Sken * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32249592Sken */
33249592Sken
34249592Sken/* $Id: snprintf-test.h 10377 2001-07-19 18:39:14Z assar $ */
35249592Sken
36249592Sken#ifndef __STRFTIME_TEST_H__
37249592Sken#define __STRFTIME_TEST_H__
38261054Smav
39249592Sken/*
40249592Sken * we cannot use the real names of the functions when testing, since
41249592Sken * they might have different prototypes as the system functions, hence
42249592Sken * these evil hacks
43249592Sken */
44249592Sken
45249592Sken#define strftime test_strftime
46249592Sken#define strptime test_strptime
47249592Sken
48249592Sken#endif /* __STRFTIME_TEST_H__ */
49249592Sken