From f34cc6d5a8bad7a6c34f30917c3f137c886d29bf Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Mon, 4 Feb 2013 11:56:51 +0100 Subject: Include machine/db_interface instead of hardcoding function prototypes * ddb/db_access.c: Include . (db_read_bytes, db_write_bytes): Remove functions prototypes. (db_get_task_value): Fix calling db_read_bytes. (db_put_task_value): Fix calling db_write_bytes. * ddb/db_watch.c: Include . (db_set_hw_watchpoint, db_clear_hw_watchpoint): Remove functions prototypes. --- ddb/db_access.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'ddb/db_access.c') diff --git a/ddb/db_access.c b/ddb/db_access.c index f06f950..6992255 100644 --- a/ddb/db_access.c +++ b/ddb/db_access.c @@ -32,6 +32,7 @@ #include #include /* type definitions */ +#include /* function definitions */ #include #include #include @@ -43,9 +44,6 @@ * boundaries. */ -extern void db_read_bytes(); /* machine-dependent */ -extern void db_write_bytes(); /* machine-dependent */ - int db_access_level = DB_ACCESS_LEVEL; /* @@ -74,7 +72,7 @@ db_get_task_value(addr, size, is_signed, task) register db_expr_t value; register int i; - db_read_bytes((void*)addr, size, data, task); + db_read_bytes(addr, size, data, task); value = 0; #if BYTE_MSF @@ -113,7 +111,7 @@ db_put_task_value(addr, size, value, task) value >>= 8; } - db_write_bytes((void*)addr, size, data, task); + db_write_bytes(addr, size, data, task); } db_expr_t -- cgit v1.2.3