1 /* File: "m1.c" */
power_of_2(int x)2 int power_of_2 (int x) { return 1<<x; }
3