vault backup: 2024-11-05 11:33:13

This commit is contained in:
zleyyij 2024-11-05 11:33:13 -07:00
parent 73e3013160
commit a8819068c3

View File

@ -6,6 +6,9 @@
```c ```c
// C will fail, because `M` is defined. // C will fail, because `M` is defined.
#ifndef M #ifndef M
// E will fail, because `M` is defined
#if !defined(M)
``` ```
--- ---