From e041d3beeaf0b810aa19e805d282e8d24ded5765 Mon Sep 17 00:00:00 2001 From: jmallett Date: Wed, 14 Aug 2002 17:56:47 +0000 Subject: When talking about c_db_sym_t, mention that it is not just like db_sym_t: it's const. Inspired by: bde --- sys/ddb/db_sym.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ddb/db_sym.h b/sys/ddb/db_sym.h index 4097880..8fb5866 100644 --- a/sys/ddb/db_sym.h +++ b/sys/ddb/db_sym.h @@ -50,7 +50,7 @@ typedef struct { * a different one */ typedef char * db_sym_t; /* opaque handle on symbols */ -typedef const char * c_db_sym_t; /* opaque handle on symbols */ +typedef const char * c_db_sym_t; /* const opaque handle on symbols */ #define DB_SYM_NULL ((db_sym_t)0) #define C_DB_SYM_NULL ((c_db_sym_t)0) -- cgit v1.1