Skip to content

Instantly share code, notes, and snippets.

View AMalahov's full-sized avatar

Alexander Malahov AMalahov

  • Russia
View GitHub Profile
#include <iostream>
#include <cstdio>
#include <cassert>
//
// init
//
const int STACK_SIZE = 1000;
thread_local int stack[STACK_SIZE];
int BP;