/// @file t_sleep.c /// @brief /// @copyright (c) 2014-2022 This file is distributed under the MIT License. /// See LICENSE.md for details. #include #include #include #include #include #include #include int main(int argc, char *argv[]) { printf("Sleeping for 4 seconds... "); sleep(4); printf("COMPLETED.\n"); return 0; }