Include <fcntl.h> or <unistd.h>
This silences some clang warnings of implicit declarations of functions. The `register int` silences a warning of implicit int.
This commit is contained in:
parent
dd328215d8
commit
cdbff0dd1c
|
@ -4,6 +4,7 @@
|
|||
*/
|
||||
/* $Id$ */
|
||||
|
||||
#include <unistd.h>
|
||||
#include "system.h"
|
||||
|
||||
int
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
*/
|
||||
/* $Id$ */
|
||||
|
||||
#include <unistd.h>
|
||||
#include "system.h"
|
||||
|
||||
void
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
*/
|
||||
/* $Id$ */
|
||||
|
||||
#include <fcntl.h>
|
||||
#include "system.h"
|
||||
|
||||
extern File *_get_entry();
|
||||
|
@ -14,7 +15,7 @@ sys_create(filep, path, mode)
|
|||
char *path;
|
||||
int mode;
|
||||
{
|
||||
register fd;
|
||||
register int fd;
|
||||
register File *fp;
|
||||
|
||||
if ((fp = _get_entry()) == (File *)0)
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
*/
|
||||
/* $Id$ */
|
||||
|
||||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
#include "system.h"
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
*/
|
||||
/* $Id$ */
|
||||
|
||||
#include <unistd.h>
|
||||
#include "system.h"
|
||||
|
||||
int
|
||||
|
|
Loading…
Reference in a new issue