mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* manual/examples/subopt.c (mount_opts): Add missing terminating entry. Reported by Michael Deutschmann <michael@talamasca.ocis.net>.
This commit is contained in:
@ -1,5 +1,9 @@
|
|||||||
2000-04-22 Ulrich Drepper <drepper@redhat.com>
|
2000-04-22 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* manual/examples/subopt.c (mount_opts): Add missing terminating
|
||||||
|
entry.
|
||||||
|
Reported by Michael Deutschmann <michael@talamasca.ocis.net>.
|
||||||
|
|
||||||
* assert/assert-perr.c: Include <stdlib.h> for abort prototype.
|
* assert/assert-perr.c: Include <stdlib.h> for abort prototype.
|
||||||
* libio/ftello.c: Likewise.
|
* libio/ftello.c: Likewise.
|
||||||
* libio/ftello64.c: Likewise.
|
* libio/ftello64.c: Likewise.
|
||||||
|
@ -12,7 +12,8 @@ enum
|
|||||||
RO_OPTION = 0,
|
RO_OPTION = 0,
|
||||||
RW_OPTION,
|
RW_OPTION,
|
||||||
READ_SIZE_OPTION,
|
READ_SIZE_OPTION,
|
||||||
WRITE_SIZE_OPTION
|
WRITE_SIZE_OPTION,
|
||||||
|
THE_END
|
||||||
};
|
};
|
||||||
|
|
||||||
const char *mount_opts[] =
|
const char *mount_opts[] =
|
||||||
@ -20,7 +21,8 @@ const char *mount_opts[] =
|
|||||||
[RO_OPTION] = "ro",
|
[RO_OPTION] = "ro",
|
||||||
[RW_OPTION] = "rw",
|
[RW_OPTION] = "rw",
|
||||||
[READ_SIZE_OPTION] = "rsize",
|
[READ_SIZE_OPTION] = "rsize",
|
||||||
[WRITE_SIZE_OPTION] = "wsize"
|
[WRITE_SIZE_OPTION] = "wsize",
|
||||||
|
[THE_END] = NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
int
|
int
|
||||||
|
Reference in New Issue
Block a user