Whitespace cleanup (half for fixing missing whitespace before `__restrict'

again).

Removed the second pair of banal comments about `quot' and `rem'.
This commit is contained in:
Bruce Evans 2002-09-21 22:05:37 +00:00
parent a0a95acece
commit a4c8a68c86
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103766

View File

@ -65,8 +65,8 @@ typedef struct {
} div_t;
typedef struct {
long quot; /* quotient */
long rem; /* remainder */
long quot;
long rem;
} ldiv_t;
#ifndef NULL
@ -217,10 +217,10 @@ void srandom(unsigned long);
/* int unlockpt(int); */
#endif /* __XSI_VISIBLE */
#if __BSD_VISIBLE
extern const char *_malloc_options;
extern void (*_malloc_message)(const char *, const char *, const char *, const char *);
extern void (*_malloc_message)(const char *, const char *, const char *,
const char *);
void *alloca(size_t); /* built-in for gcc */
__uint32_t
@ -260,7 +260,8 @@ void sranddev(void);
void srandomdev(void);
/* Deprecated interfaces, to be removed in FreeBSD 6.0. */
__int64_t strtoq(const char *, char **, int);
__int64_t
strtoq(const char *, char **, int);
__uint64_t
strtouq(const char *, char **, int);
#endif /* __BSD_VISIBLE */