2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

[master] added redundant 'const' in a function declaration to help SunStudio.

It insists signature match between declarations and definitions even with such
unnecessary qualifiers, and fails to link due to a false-positive
"undefined symbol" at the link time.
This commit is contained in:
JINMEI Tatuya
2013-02-06 18:10:05 +00:00
parent fbf11f41c3
commit 6f83737a9b

View File

@@ -40,10 +40,10 @@ bool
process_ok(pid_t process);
pid_t
provide_input(int *read_pipe, const void *input, const size_t length);
provide_input(int* read_pipe, const void* input, const size_t length);
pid_t
check_output(int *write_pipe, const void *output, const size_t length);
check_output(int* write_pipe, const void* const output, const size_t length);
} // End of the namespace
}