mirror of
https://git.savannah.gnu.org/git/tar.git
synced 2026-04-23 01:50:39 +00:00
build: update submodules to latest
* src/common.h: Include <inttostr.h> since paxutils no longer does. (STRINGIFY_BIGINT): New macro, copied from older paxutils. (UINTMAX_STRSIZE_BOUND): New constant, also from older paxutils.
This commit is contained in:
2
gnulib
2
gnulib
Submodule gnulib updated: d682f8de7f...60e9cc86d9
2
paxutils
2
paxutils
Submodule paxutils updated: 9ae062098d...6fba6e9406
@@ -54,6 +54,7 @@
|
||||
#include <exclude.h>
|
||||
#include <full-write.h>
|
||||
#include <idx.h>
|
||||
#include <inttostr.h>
|
||||
#include <modechange.h>
|
||||
#include <quote.h>
|
||||
#include <safe-read.h>
|
||||
@@ -673,6 +674,8 @@ represent_uintmax (uintmax_t n)
|
||||
}
|
||||
}
|
||||
|
||||
#define STRINGIFY_BIGINT(i, b) umaxtostr (i, b)
|
||||
enum { UINTMAX_STRSIZE_BOUND = INT_BUFSIZE_BOUND (intmax_t) };
|
||||
enum { SYSINT_BUFSIZE =
|
||||
max (UINTMAX_STRSIZE_BOUND, INT_BUFSIZE_BOUND (intmax_t)) };
|
||||
char *sysinttostr (uintmax_t, intmax_t, uintmax_t, char buf[SYSINT_BUFSIZE]);
|
||||
|
||||
Reference in New Issue
Block a user