source: rtems-libbsd/rtemsbsd/rtems/rtems-bsd-shell-ping.c @ dd35ec5

55-freebsd-126-freebsd-12
Last change on this file since dd35ec5 was d9fe061, checked in by Sebastian Huber <sebastian.huber@…>, on 09/28/16 at 11:23:16

Split rtems-bsd-shell-netcmds.c

This improves garbage collection by the linker.

  • Property mode set to 100644
File size: 647 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-2012.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 */
9
10#include <rtems/netcmds-config.h>
11#include <machine/rtems-bsd-commands.h>
12
13rtems_shell_cmd_t rtems_shell_PING_Command = {
14  "ping",                        /* name */
15  "ping [args]",                 /* usage */
16  "net",                         /* topic */
17  rtems_bsd_command_ping,        /* command */
18  NULL,                          /* alias */
19  NULL                           /* next */
20};
Note: See TracBrowser for help on using the repository browser.