Fixes: 9716
Signed-off-by: Adam Crume <adamcrume@gmail.com>
*
* @returns non-NULL on success, NULL on memory allocation error.
*/
-rados_write_op_t rados_create_write_op();
+rados_write_op_t rados_create_write_op(void);
/**
* Free a rados_write_op_t, must be called when you're done with it.
*
* @returns non-NULL on success, NULL on memory allocation error.
*/
-rados_read_op_t rados_create_read_op();
+rados_read_op_t rados_create_read_op(void);
/**
* Free a rados_read_op_t, must be called when you're done with it.
ceph_test_c_headers_SOURCES = test/test_c_headers.c
ceph_test_c_headers_LDADD = $(LIBRADOS) $(LIBCEPHFS)
+ceph_test_c_headers_CFLAGS = $(AM_CFLAGS) \
+ -Werror \
+ -Wstrict-prototypes \
+ -Wredundant-decls \
+ -Wall \
+ -Wundef \
+ -Wwrite-strings \
+ -Wmissing-prototypes \
+ -Wendif-labels \
+ -Wmissing-include-dirs \
+ -Wempty-body \
+ -Wnested-externs \
+ -Wformat-security \
+ -Wformat-y2k \
+ -Winit-self \
+ -Wignored-qualifiers \
+ -Wold-style-declaration \
+ -Wold-style-definition \
+ -Wtype-limits
bin_DEBUGPROGRAMS += ceph_test_c_headers
ceph_test_get_blkdev_size_SOURCES = test/test_get_blkdev_size.cc