timespec_get: New module.
[gnulib.git] / lib / mini-gmp-gnulib.c
blobd46c2b993bc71caf4562d05eb0830d98072111e5
1 /* Tailor mini-gmp.c for Gnulib-using applications.
3 Copyright 2018-2021 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program 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
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 #include <config.h>
20 #include <stddef.h>
21 #include <stdio.h>
23 #include "mini-gmp.h"
25 /* Pacify GCC -Wsuggest-attribute=const, pure, malloc. */
26 #if 4 < __GNUC__ + (6 <= __GNUC_MINOR__)
27 # pragma GCC diagnostic ignored "-Wsuggest-attribute=const"
28 # pragma GCC diagnostic ignored "-Wsuggest-attribute=pure"
29 #endif
30 #if 8 <= __GNUC__
31 # pragma GCC diagnostic ignored "-Wsuggest-attribute=malloc"
32 #endif
34 /* Pacify GCC -Wunused-variable for variables used only in 'assert' calls. */
35 #if defined NDEBUG && 4 < __GNUC__ + (6 <= __GNUC_MINOR__)
36 # pragma GCC diagnostic ignored "-Wunused-variable"
37 #endif
39 #include "mini-gmp.c"