Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/consapp/convbin/convbin.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* delete option -noscan
* suppress warnings
*-----------------------------------------------------------------------------*/
#define _POSIX_C_SOURCE 199506
#define _POSIX_C_SOURCE 200112L
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Expand Down
2 changes: 1 addition & 1 deletion app/consapp/rtkrcv/rtkrcv.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* add option -w
* 2017/09/01 1.21 add command ssr
*-----------------------------------------------------------------------------*/
#define _POSIX_C_SOURCE 199506
#define _POSIX_C_SOURCE 200112L
#include <stdlib.h>
#include <signal.h>
#include <unistd.h>
Expand Down
2 changes: 1 addition & 1 deletion app/consapp/str2str/str2str.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* 2017/05/26 1.17 add input format tersus
* 2020/11/30 1.18 support api change strsvrstart(),strsvrstat()
*-----------------------------------------------------------------------------*/
#define _POSIX_C_SOURCE 199506
#define _POSIX_C_SOURCE 200112L
#include <fcntl.h>
#include <signal.h>
#include <unistd.h>
Expand Down
2 changes: 1 addition & 1 deletion src/download.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limit max number of download paths
* use integer types in stdint.h
*-----------------------------------------------------------------------------*/
#define _POSIX_C_SOURCE 199506
#define _POSIX_C_SOURCE 200112L
#include <errno.h>
#include <sys/stat.h>
#include <sys/types.h>
Expand Down
2 changes: 1 addition & 1 deletion src/options.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* pos1-tropopt, pos1-sateph, pos1-navsys,
* pos2-gloarmode,
*-----------------------------------------------------------------------------*/
#define _POSIX_C_SOURCE 199506
#define _POSIX_C_SOURCE 200112L
#include "rtklib.h"

/* system options buffer -----------------------------------------------------*/
Expand Down
2 changes: 1 addition & 1 deletion src/rcv/nvs.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* 2020/07/10 1.8 suppress warnings
* 2020/11/30 1.9 use integer type in stdint.h
*-----------------------------------------------------------------------------*/
#define _POSIX_C_SOURCE 199506
#define _POSIX_C_SOURCE 200112L
#include "rtklib.h"

#define NVSSYNC 0x10 /* nvs message sync code 1 */
Expand Down
2 changes: 1 addition & 1 deletion src/rcv/skytraq.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* use integer type in stdint.h
* suppress warnings
*-----------------------------------------------------------------------------*/
#define _POSIX_C_SOURCE 199506
#define _POSIX_C_SOURCE 200112L
#include "rtklib.h"

#define STQSYNC1 0xA0 /* skytraq binary sync code 1 */
Expand Down
2 changes: 1 addition & 1 deletion src/rcv/ublox.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
* CODE_L1I -> CODE_L2I for BDS B1I (RINEX 3.04)
* use integer types in stdint.h
*-----------------------------------------------------------------------------*/
#define _POSIX_C_SOURCE 199506
#define _POSIX_C_SOURCE 200112L
#include "rtklib.h"

#define UBXSYNC1 0xB5 /* ubx message sync code 1 */
Expand Down
2 changes: 1 addition & 1 deletion src/rtkcmn.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
* use integer types in stdint.h
* suppress warnings
*-----------------------------------------------------------------------------*/
#define _POSIX_C_SOURCE 199506
#define _POSIX_C_SOURCE 200112L
#include <stdarg.h>
#include <ctype.h>
#include <errno.h>
Expand Down
2 changes: 1 addition & 1 deletion src/stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
* suppress warning for buffer overflow by sprintf()
* use integer types in stdint.h
*-----------------------------------------------------------------------------*/
#define _POSIX_C_SOURCE 199506
#define _POSIX_C_SOURCE 200112L
#include <ctype.h>
#include "rtklib.h"
#ifndef WIN32
Expand Down
2 changes: 1 addition & 1 deletion src/streamsvr.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* delete API strsvrsetsrctbl()
* use integer types in stdint.h
*-----------------------------------------------------------------------------*/
#define _POSIX_C_SOURCE 199506
#define _POSIX_C_SOURCE 200112L
#include "rtklib.h"

/* test observation data message ---------------------------------------------*/
Expand Down