mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
relying on any other modules -- in m_libcbase. Also converted the 'size' parameters to functions like VG_(memcpy) and VG_(strncpy) from Int to SizeT, as they should be. Also removed VG_(atoll16) and VG_(toupper), which weren't being used. Also made VG_(atoll36) less flexible -- it now only does base-36 numbers instead of any base in the range 2..36, since base-36 is the only one we need. As part of that, I fixed a horrible bug in it which caused it to return incorrect answers for any number containing the digits 'A'..'I'! (Eg. for "A; it would return 17 instead of 10!) Had to disable the assertions in VG_(string_match), since this module can't see vg_assert, which wasn't ideal but also isn't a disaster. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3838
27 lines
578 B
Makefile
27 lines
578 B
Makefile
|
|
incincdir = $(includedir)/valgrind
|
|
|
|
incinc_HEADERS = \
|
|
basic_types.h \
|
|
tool.h \
|
|
tool_asm.h \
|
|
pub_tool_errormgr.h \
|
|
pub_tool_execontext.h \
|
|
pub_tool_hashtable.h \
|
|
pub_tool_libcbase.h \
|
|
pub_tool_mallocfree.h \
|
|
pub_tool_options.h \
|
|
pub_tool_profile.h \
|
|
pub_tool_replacemalloc.h \
|
|
pub_tool_skiplist.h \
|
|
pub_tool_stacktrace.h \
|
|
pub_tool_tooliface.h \
|
|
valgrind.h \
|
|
vki-linux.h \
|
|
vki-amd64-linux.h \
|
|
vki-arm-linux.h \
|
|
vki-x86-linux.h \
|
|
vki_posixtypes-amd64-linux.h \
|
|
vki_posixtypes-arm-linux.h \
|
|
vki_posixtypes-x86-linux.h
|