my_fdopen: list all args in comment

This commit is contained in:
Daniel Black 2018-03-02 10:09:55 +11:00 committed by Sergey Vojtovich
commit 2ef2863c30

View file

@ -260,6 +260,8 @@ FILE *my_fdopen(File Filedes, const char *name, int Flags, myf MyFlags)
r+ == O_RDWR
w+ == O_RDWR|O_TRUNC|O_CREAT
a+ == O_RDWR|O_APPEND|O_CREAT
b == FILE_BINARY
e == O_CLOEXEC
*/
static void make_ftype(register char * to, register int flag)