2006-03-29 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/io.c (__mknod): Fix declaration of syscall to pass a dev_t as third argument rather than a pointer to dev_t.
This commit is contained in:
parent
9e443adbaf
commit
fac690bef7
@ -1,3 +1,9 @@
|
|||||||
|
2006-03-29 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
|
* libc/sys/linux/io.c (__mknod): Fix declaration of
|
||||||
|
syscall to pass a dev_t as third argument rather than
|
||||||
|
a pointer to dev_t.
|
||||||
|
|
||||||
2006-03-29 Jeff Johnston <jjohnstn@redhat.com>
|
2006-03-29 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* libc/sys/linux/net/name6.c: Fix struct references.
|
* libc/sys/linux/net/name6.c: Fix struct references.
|
||||||
|
@ -65,7 +65,7 @@ int flock(int fd,int operation)
|
|||||||
|
|
||||||
#if !defined(_ELIX_LEVEL) || _ELIX_LEVEL >= 3
|
#if !defined(_ELIX_LEVEL) || _ELIX_LEVEL >= 3
|
||||||
|
|
||||||
static _syscall3(int,__mknod,const char *,path,mode_t,mode,dev_t *,dev)
|
static _syscall3(int,__mknod,const char *,path,mode_t,mode,dev_t,dev)
|
||||||
|
|
||||||
int mkfifo(const char *path, mode_t mode)
|
int mkfifo(const char *path, mode_t mode)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user