Skip to content

Commit

Permalink
Fix up header guards and macros to be SCUDOesque rather than from SAN…
Browse files Browse the repository at this point in the history
…ITIZERESQUE
  • Loading branch information
rgal committed Jan 28, 2021
1 parent 7eed8f3 commit 05feccc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions compiler-rt/lib/scudo/standalone/win_defs.h
Expand Up @@ -9,11 +9,11 @@
// Common definitions for Windows-specific code.
//
//===----------------------------------------------------------------------===//
#ifndef SANITIZER_WIN_DEFS_H
#define SANITIZER_WIN_DEFS_H
#ifndef SCUDO_WIN_DEFS_H
#define SCUDO_WIN_DEFS_H

#include "platform.h"
#if SANITIZER_WINDOWS
#if SCUDO_WINDOWS

#ifndef WINAPI
#if defined(_M_IX86) || defined(__i386__)
Expand Down Expand Up @@ -170,5 +170,5 @@

#endif // SANITIZER_GO

#endif // SANITIZER_WINDOWS
#endif // SANITIZER_WIN_DEFS_H
#endif // SCUDO_WINDOWS
#endif // SCUDO_WIN_DEFS_H

0 comments on commit 05feccc

Please sign in to comment.