diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-29 01:46:14 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-29 01:46:14 +0100 |
commit | 39f1a60497327c301e32a681c33138f42cb98359 (patch) | |
tree | e06df6393c1ff6fcd46d7a56c127657a60dfcdf3 /src/client.h | |
parent | m fix (diff) | |
download | sat-39f1a60497327c301e32a681c33138f42cb98359.tar.gz sat-39f1a60497327c301e32a681c33138f42cb98359.tar.bz2 sat-39f1a60497327c301e32a681c33138f42cb98359.tar.xz |
feature test macros
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to 'src/client.h')
-rw-r--r-- | src/client.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client.h b/src/client.h index 900f6ec..b3ade56 100644 --- a/src/client.h +++ b/src/client.h @@ -19,6 +19,9 @@ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ +#ifndef _DEFAULT_SOURCE +# define _DEFAULT_SOURCE +#endif #include <stddef.h> @@ -63,7 +66,6 @@ enum command { */ int send_command(enum command cmd, size_t n, const char *restrict msg); - /** * Return the number of bytes required to store a string array. * |