source: rtems/cpukit/libmisc/shell/main_exit.c

Last change on this file was 5f8c41c, checked in by Joel Sherrill <joel@…>, on 04/01/22 at 18:18:49

Update email address of Fernando Ruiz Casas to <fruizcasas@…>

This was requested to be executed prior to relicensing to BSD-2.

  • Property mode set to 100644
File size: 552 bytes
Line 
1/**
2 * @file
3 *
4 * @brief exit Shell Command Implmentation
5 */
6
7/*
8 * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.org/license/LICENSE.
13 */
14
15#ifdef HAVE_CONFIG_H
16#include "config.h"
17#endif
18
19#include <rtems.h>
20#include <rtems/shell.h>
21#include "internal.h"
22
23rtems_shell_alias_t rtems_shell_EXIT_Alias = {
24  "logoff",                   /* command */
25  "exit"                      /* alias */
26};
Note: See TracBrowser for help on using the repository browser.