summaryrefslogtreecommitdiff
path: root/rtemsbsd/telnetd/telnetd-init.c
blob: 586aaef75d8f1567af86fd027b288cb072aedf5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * 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 );
}