* Open a file with BasicOpenFilePerm() and pass default file mode for the * fileMode parameter. */
| 1064 | * fileMode parameter. |
| 1065 | */ |
| 1066 | int |
| 1067 | BasicOpenFile(const char *fileName, int fileFlags) |
| 1068 | { |
| 1069 | return BasicOpenFilePerm(fileName, fileFlags, pg_file_create_mode); |
| 1070 | } |
| 1071 | |
| 1072 | /* |
| 1073 | * BasicOpenFilePerm --- same as open(2) except can free other FDs if needed |
no test coverage detected