fixed conflict typo

renamed open to why2_open
This commit is contained in:
Václav Šmejkal 2023-01-31 15:54:32 +01:00
parent c487d4eeee
commit 384678b055
Signed by: ENGO150
GPG Key ID: 4A57E86482968843

View File

@ -9,7 +9,7 @@ void *why2_realloc(void *pointer, unsigned long size);
FILE *why2_fopen(char *file_name, char *modes); FILE *why2_fopen(char *file_name, char *modes);
FILE *why2_fdopen(int file, char *modes); FILE *why2_fdopen(int file, char *modes);
int open(char *file, int flags, ...); int why2_open(char *file, int flags, ...);
void why2_free(void *pointer); void why2_free(void *pointer);