--- apricots/all.cpp~ 2021-02-12 17:45:58.000000000 -0600 +++ apricots/all.cpp 2022-02-02 10:26:27.828905931 -0600 @@ -18,7 +18,7 @@ // Sign function -inline int sign(int n) { return (0 < n) - (n < 0); } +int sign(int n) { return (0 < n) - (n < 0); } // Error message for switch statements that shouldn't ever get to default