1 /* 2 * Copyright (c) 2025 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef APPSPAWN_LIB_FUNC_UNDEF_H 17 #define APPSPAWN_LIB_FUNC_UNDEF_H 18 19 #define Fseeko fseeko 20 #define Ftello ftello 21 #define Access access 22 #define Mkdir mkdir 23 #define Fread fread 24 #define Fwrite fwrite 25 #define Realpath realpath 26 #define Fopen fopen 27 #define Fclose fclose 28 #define Chmod chmod 29 #define Utime utime 30 #define Stat(pathname, statbuf) stat(pathname, statbuf) 31 #define Ferror ferror 32 #define Fflush fflush 33 #define Remove remove 34 #define Getpwuid getpwuid 35 #define Getgrgid getgrgid 36 #define Open open 37 #define Read read 38 #define Write write 39 #define Close close 40 #define Umount2 umount2 41 #define Rmdir rmdir 42 43 #endif // APPSPAWN_LIB_FUNC_UNDEF_H