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$ */
|
/* $Id$ */
|
||||||
|
|
||||||
|
#include <unistd.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
*/
|
*/
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
|
#include <unistd.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
*/
|
*/
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
|
#include <fcntl.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
|
|
||||||
extern File *_get_entry();
|
extern File *_get_entry();
|
||||||
|
@ -14,7 +15,7 @@ sys_create(filep, path, mode)
|
||||||
char *path;
|
char *path;
|
||||||
int mode;
|
int mode;
|
||||||
{
|
{
|
||||||
register fd;
|
register int fd;
|
||||||
register File *fp;
|
register File *fp;
|
||||||
|
|
||||||
if ((fp = _get_entry()) == (File *)0)
|
if ((fp = _get_entry()) == (File *)0)
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
*/
|
*/
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
|
#include <fcntl.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
*/
|
*/
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
|
#include <unistd.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
Loading…
Reference in a new issue