source: rtems/cpukit/libmisc/bspcmdline/bspcmdline_get.c @ b2bbdb9

4.104.115
Last change on this file since b2bbdb9 was b2bbdb9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/27/10 at 05:01:30

Add HAVE_CONFIG_H support to let files receive configure defines.

  • Property mode set to 100644
File size: 453 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-2009.
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 *  $Id$
10 */
11
12#ifdef HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <rtems/bspcmdline.h>
17
18extern const char *bsp_boot_cmdline;
19
20const char *rtems_bsp_cmdline_get(void)
21{
22  return bsp_boot_cmdline;
23}
Note: See TracBrowser for help on using the repository browser.