mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Tue Feb 27 12:14:59 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
* time/strftime.c: Support - and _ flags to affect number padding. * sysdeps/unix/common/tcsendbrk.c: New file.
This commit is contained in:
@ -1,16 +0,0 @@
|
||||
#ifndef MAXNAMLEN
|
||||
#define MAXNAMLEN 255
|
||||
#endif
|
||||
|
||||
struct direct
|
||||
{
|
||||
unsigned long int d_fileno;
|
||||
unsigned short int d_reclen;
|
||||
unsigned char d_type; /* File type, possibly unknown. */
|
||||
unsigned char d_namlen; /* Length of the file name. */
|
||||
char d_name[MAXNAMLEN + 1];
|
||||
};
|
||||
|
||||
#define D_NAMLEN(d) ((d)->d_namlen)
|
||||
|
||||
#define HAVE_D_TYPE
|
@ -1,13 +0,0 @@
|
||||
#ifndef MAXNAMLEN
|
||||
#define MAXNAMLEN 255
|
||||
#endif
|
||||
|
||||
struct direct
|
||||
{
|
||||
unsigned int d_fileno; /* 32 bits. */
|
||||
unsigned short int d_reclen; /* 16 bits. */
|
||||
unsigned short int d_namlen; /* 16 bits. */
|
||||
char d_name[MAXNAMLEN + 1];
|
||||
};
|
||||
|
||||
#define D_NAMLEN(d) ((d)->d_namlen)
|
Reference in New Issue
Block a user