PR target/83926
[official-gcc.git] / include / timeval-utils.h
blob76ff25d7c0d5cd1333db6362218e8e12657fe7d5
1 /* Basic struct timeval utilities.
2 Copyright (C) 2011-2018 Free Software Foundation, Inc.
4 This file is part of the libiberty library.
5 Libiberty is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
10 Libiberty is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with libiberty; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
18 Boston, MA 02110-1301, USA. */
20 #ifndef TIMEVAL_UTILS_H
21 #define TIMEVAL_UTILS_H
23 #ifdef __cplusplus
24 extern "C" {
25 #endif /* __cplusplus */
27 /* forward decl */
28 struct timeval;
30 extern void timeval_add (struct timeval *result,
31 const struct timeval *a, const struct timeval *b);
33 extern void timeval_sub (struct timeval *result,
34 const struct timeval *a, const struct timeval *b);
36 #ifdef __cplusplus
38 #endif /* __cplusplus */
40 #endif /* TIMEVAL_UTILS_H */