1#include <unistd.h>
2
3int main() {
4  const char msg[] = "something";
5  write(2, msg, sizeof(msg));
6  return 0;
7}
8