#ifndef hal_boot_params_boot_params_copy_h #define hal_boot_params_boot_params_copy_h /* Cesar project {{{ * * Copyright (C) 2011 Spidcom * * <<>> * * }}} */ /** * \file hal/boot_params/boot_params_copy.h * \brief Header file used to disable the copy of boot parameters if the * hal/boot_params module is not included. * \ingroup hal_boot_params * */ #include "common/module.h" #if MODULE_INCLUDED (hal_boot_params) /** * Copy the boot parameters from where they are at boot time, to where they are * expected later. * \param bin_eof end of the binary file */ void boot_params_copy (char *bin_eof); #else #define boot_params_copy(boot_params_area) ((void) 0) #endif /* MODULE_INCLUDED (hal_boot_params) */ #endif /* hal_boot_params_boot_params_copy_h */