2021-12-30 00:14:23 +00:00
|
|
|
/*
|
2022-06-02 18:51:06 +00:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2021-12-30 00:14:23 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
2022-10-26 19:18:14 +00:00
|
|
|
|
2021-12-30 00:14:23 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
write(STDOUT_FILENO, "0", 1);
|
|
|
|
write(STDOUT_FILENO, "1", 1);
|
|
|
|
write(STDOUT_FILENO, "2", 1);
|
|
|
|
write(STDOUT_FILENO, "3", 1);
|
|
|
|
write(STDOUT_FILENO, "4", 1);
|
|
|
|
write(STDOUT_FILENO, "5", 1);
|
|
|
|
write(STDOUT_FILENO, "6", 1);
|
|
|
|
write(STDOUT_FILENO, "7", 1);
|
|
|
|
write(STDOUT_FILENO, "8", 1);
|
|
|
|
write(STDOUT_FILENO, "9", 1);
|
|
|
|
write(STDOUT_FILENO, "\n", 1);
|
|
|
|
}
|