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