Commit 9ea86013 authored by Sebastian Kuzminsky's avatar Sebastian Kuzminsky
Browse files

function declarations shouldn't be marked inline

GCC 6.3 in Debian Strech uses C99 inline semantics, so it complains:

    In file included from eeprom_local.c:31:0:
    eeprom_local.c: At top level:
    epp_boards.h:37:13: warning: inline function ‘epp_write8’ declared but never defined
     inline void epp_write8(board_t *board, u8 data);
		 ^~~~~~~~~~

The function declaration needs to be non-inline, and the function
definition can be inline.
parent 9d1ac150
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment