1
0
Fork 0
mirror of https://github.com/tailix/drivers.git synced 2024-11-20 11:06:32 -05:00

Remove stub code

This commit is contained in:
Alex Kotov 2022-12-03 20:24:27 +04:00
parent e2f20188f9
commit 64e324efb3
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08
4 changed files with 1 additions and 14 deletions

View file

@ -8,7 +8,6 @@ SUBDIRS = include
lib_LTLIBRARIES = libdrivers.la lib_LTLIBRARIES = libdrivers.la
libdrivers_la_SOURCES = \ libdrivers_la_SOURCES = \
src/foobar.c \
src/console.c \ src/console.c \
src/shutdown.c src/shutdown.c

View file

@ -22,7 +22,7 @@ AC_CANONICAL_HOST
AC_CONFIG_MACRO_DIRS([m4]) AC_CONFIG_MACRO_DIRS([m4])
AC_CONFIG_HEADERS([config.h]) AC_CONFIG_HEADERS([config.h])
AC_CONFIG_SRCDIR([src/foobar.c]) AC_CONFIG_SRCDIR([src/shutdown.c])
AC_CONFIG_FILES([ AC_CONFIG_FILES([
Makefile Makefile
include/Makefile include/Makefile

View file

@ -5,8 +5,6 @@
extern "C" { extern "C" {
#endif #endif
int drivers_foobar(int a, int b);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif

View file

@ -1,10 +0,0 @@
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <drivers.h>
int drivers_foobar(const int a, const int b)
{
return a + b;
}