os-workshop

same materials and sample source for RV32 OS projects
git clone http://frotz.net/git/os-workshop.git
Log | Files | Refs

assert.h (134B)


      1 #pragma once
      2 
      3 #ifdef __cplusplus
      4 // static_assert(a, b) already exists
      5 #else
      6 #define static_assert(a, b) _Static_assert(a, b)
      7 #endif
      8