blob: 1b4d608219b875081809e490ec971e4ba589cc28 [file] [log] [blame]
/*
* Copyright 2013, The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifdef USE_MINGW
#include "mmanWindows.h"
void* mmap(void *, size_t, int, int, int, off_t) {
return MAP_FAILED;
}
int munmap(void *, size_t) {
return -1;
}
int mprotect(const void *, size_t, int) {
return -1;
}
#endif // USE_MINGW