mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 04:23:38 +01:00
Merge branch 'dev' of https://gitea.planet-casio.com/Vhex-Kernel-Core/fxlibc into dev
This commit is contained in:
commit
ed77a97547
2 changed files with 4 additions and 4 deletions
|
@ -72,8 +72,8 @@ struct stat {
|
|||
#define st_ctime st_ctim.tv_sec
|
||||
|
||||
/* Obtain information about an entry in the filesystem. */
|
||||
extern int stat(char const * restrict __pathname,
|
||||
struct stat * restrict __statbuf);
|
||||
extern int stat(char const * __restrict__ __pathname,
|
||||
struct stat * __restrict__ __statbuf);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
@ -61,8 +61,8 @@ extern struct tm *localtime(const time_t *time);
|
|||
/* Formats __time according to the specified format; similar to snprintf().
|
||||
TODO: %g, %G, %V (week-based year), and %U, %W (week number) are not
|
||||
supported and substituted by "??". %z and %Z output nothing. */
|
||||
size_t strftime(char * restrict __s, size_t __maxsize,
|
||||
const char * restrict __format, const struct tm * restrict __time);
|
||||
size_t strftime(char * __restrict__ __s, size_t __maxsize,
|
||||
const char * __restrict__ __format, const struct tm * __restrict__ __time);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue