#ifndef SPINLOCK_H #define SPINLOCK_H #include typedef volatile uint8_t spinlock; void lock_spin(spinlock); void lock_release(spinlock); #endif