fat: Greatly simplify and clean up dosfs_get_file_map().
[haiku.git] / src / build / libhaikucompat / misc.cpp
blob0ef4f8c8a74416def11d6adefc74dfe16c0dd9aa
2 #include <stdarg.h>
3 #include <stdio.h>
5 #include <fs_volume.h>
7 extern "C" void
8 debug_printf(const char *format, ...)
10 va_list list;
12 va_start(list, format);
13 vprintf(format, list);
14 va_end(list);
18 extern "C" void
19 ktrace_printf(const char *format, ...)
24 dev_t
25 fs_mount_volume(const char *where, const char *device, const char *filesystem,
26 uint32 flags, const char *parameters)
28 return B_ERROR;
32 status_t
33 fs_unmount_volume(const char *path, uint32 flags)
35 return B_ERROR;
39 int32
40 atomic_get(vint32 *value)
42 return *value;
46 status_t
47 _get_port_message_info_etc(port_id id, port_message_info *info,
48 size_t infoSize, uint32 flags, bigtime_t timeout)
50 return B_ERROR;