btrfs-progs: print-tree: Remove btrfs_root parameter
[platform/upstream/btrfs-progs.git] / libbtrfsutil / stubs.c
1 /*
2  * This file is part of libbtrfsutil.
3  *
4  * libbtrfsutil is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * libbtrfsutil is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with libbtrfsutil.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #if HAVE_REALLOCARRAY != 1
19
20 #include <stdlib.h>
21 #include <errno.h>
22
23 void *reallocarray(void *ptr, size_t nmemb, size_t size)
24 {
25         size_t res;
26
27         res = nmemb * size;
28         if (res < nmemb || res < size) {
29                 errno = ENOMEM;
30                 return NULL;
31         }
32         return realloc(ptr, res);
33 }
34
35 #endif