Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/symtab.h

    rda1bafb r0dee005  
    3636#define KERN_SYMTAB_H_
    3737
    38 #include <typedefs.h>
     38#include <arch/types.h>
    3939
    40 #define MAX_SYMBOL_NAME  64
     40#define MAX_SYMBOL_NAME 64
    4141
    4242struct symtab_entry {
     
    4545};
    4646
    47 extern int symtab_name_lookup(uintptr_t, const char **, uintptr_t *);
    48 extern const char *symtab_fmt_name_lookup(uintptr_t);
     47extern int symtab_name_lookup(uintptr_t, char **, uintptr_t *);
     48extern char *symtab_fmt_name_lookup(uintptr_t);
    4949extern int symtab_addr_lookup(const char *, uintptr_t *);
    5050extern void symtab_print_search(const char *);
     
    5353#ifdef CONFIG_SYMTAB
    5454
    55 /** Symtable linked together by build process
    56  *
    57  */
     55/* Symtable linked together by build process */
    5856extern struct symtab_entry symbol_table[];
    5957
    60 #endif /* CONFIG_SYMTAB */
     58#endif
    6159
    6260#endif
Note: See TracChangeset for help on using the changeset viewer.