forked from OSchip/llvm-project
[sanitizers] Add missing definition
Fix breakages from https://reviews.llvm.org/D90811 http://lab.llvm.org:8011/#/builders/37/builds/471/steps/8/logs/stdio Differential Revision: https://reviews.llvm.org/D90818
This commit is contained in:
parent
20b4f4f760
commit
9f9077d7d1
|
@ -10,9 +10,10 @@
|
|||
// libc in no-libcdep sources.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "sanitizer_platform.h"
|
||||
#include "sanitizer_common.h"
|
||||
#include "sanitizer_flags.h"
|
||||
#include "sanitizer_libc.h"
|
||||
#include "sanitizer_platform.h"
|
||||
|
||||
namespace __sanitizer {
|
||||
|
||||
|
@ -29,6 +30,7 @@ void SleepForSeconds(int seconds) { internal_sleep(seconds); }
|
|||
|
||||
#if !SANITIZER_WINDOWS && !SANITIZER_MAC
|
||||
void ListOfModules::init() {}
|
||||
void InitializePlatformCommonFlags(CommonFlags *cf) {}
|
||||
#endif
|
||||
|
||||
} // namespace __sanitizer
|
||||
|
|
Loading…
Reference in New Issue