summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--liblog/include/android/log.h7
-rw-r--r--libsync/include/ndk/sync.h11
2 files changed, 18 insertions, 0 deletions
diff --git a/liblog/include/android/log.h b/liblog/include/android/log.h
index 28c87e46d..52cbe8b71 100644
--- a/liblog/include/android/log.h
+++ b/liblog/include/android/log.h
@@ -35,6 +35,11 @@
35 */ 35 */
36 36
37/** 37/**
38 * @addtogroup Logging
39 * @{
40 */
41
42/**
38 * \file 43 * \file
39 * 44 *
40 * Support routines to send messages to the Android log buffer, 45 * Support routines to send messages to the Android log buffer,
@@ -205,4 +210,6 @@ int __android_log_buf_print(int bufID, int prio, const char* tag,
205} 210}
206#endif 211#endif
207 212
213/** @} */
214
208#endif /* _ANDROID_LOG_H */ 215#endif /* _ANDROID_LOG_H */
diff --git a/libsync/include/ndk/sync.h b/libsync/include/ndk/sync.h
index 3c5578313..a786d3ef9 100644
--- a/libsync/include/ndk/sync.h
+++ b/libsync/include/ndk/sync.h
@@ -14,6 +14,15 @@
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 16
17/**
18 * @addtogroup Sync
19 * @{
20 */
21
22/**
23 * @file sync.h
24 */
25
17#ifndef ANDROID_SYNC_H 26#ifndef ANDROID_SYNC_H
18#define ANDROID_SYNC_H 27#define ANDROID_SYNC_H
19 28
@@ -86,3 +95,5 @@ void sync_file_info_free(struct sync_file_info *info);
86__END_DECLS 95__END_DECLS
87 96
88#endif /* ANDROID_SYNC_H */ 97#endif /* ANDROID_SYNC_H */
98
99/** @} */