mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-25 02:55:33 +00:00
9 lines
171 B
Rust
9 lines
171 B
Rust
// Expose constant strings as macros so that we can use concat!() on these values
|
|
|
|
#[macro_export]
|
|
macro_rules! LOGFILE {
|
|
() => {
|
|
"/cache/magisk.log"
|
|
};
|
|
}
|