blob: 78b0fc669a36a2397083590b4099353eccc19e95 [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stdio.h>
#include <unistd.h>
int main(void) {
printf("exit_test: Sleeping for 5 seconds\n");
sleep(5);
printf("exit_test: Exiting\n");
return 0;
}