#include <stdint.h> enum { STATE_IDLE = 0, STATE_WORKING, STATE_PANIC, TOTAL_STATES }; int32_t const g_stress_levels[TOTAL_STATES] = { [STATE_IDLE] = 10, [STATE_WORKING] = 40, [STATE_PANIC] = 90 }; int main(void) { return 0; }