source: rtems/cpukit/score/cpu/moxie/moxie-exception-frame-print.c @ 9165349d

Last change on this file since 9165349d was 80cf60e, checked in by Sebastian Huber <sebastian.huber@…>, on 04/15/20 at 07:48:32

Canonicalize config.h include

Use the following variant which was already used by most source files:

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

  • Property mode set to 100644
File size: 368 bytes
Line 
1/*
2 * Copyright (c) 2013  Anthony Green
3 *
4 * The license and distribution terms for this file may be
5 * found in the file LICENSE in this distribution or at
6 * http://www.rtems.org/license/LICENSE.
7 */
8
9#ifdef HAVE_CONFIG_H
10#include "config.h"
11#endif
12
13#include <rtems/score/cpu.h>
14
15void _CPU_Exception_frame_print( const CPU_Exception_frame *frame )
16{
17  /* TODO */
18}
Note: See TracBrowser for help on using the repository browser.