mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-13 14:29:15 +08:00

The files have been taken from RTEMS repository with head commit at bd9e45d91f77657445400bc2c814f251c9e37cef
19 lines
420 B
C
19 lines
420 B
C
/*
|
|
* Copyright (c) 2018 embedded brains GmbH. All rights reserved.
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <rtems/telnetd.h>
|
|
|
|
rtems_status_code rtems_telnetd_initialize( void )
|
|
{
|
|
return rtems_telnetd_start( &rtems_telnetd_config );
|
|
}
|