mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 05:38:46 -05:00
Fix the errors caused by fixing warnings!
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6592 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
e565e1796a
commit
def440bf8c
@ -7,9 +7,9 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
//#define NULL ((void *)0)
|
|
||||||
#define min(a,b) ((a) < (b) ? (a) : (b))
|
#define min(a,b) ((a) < (b) ? (a) : (b))
|
||||||
|
|
||||||
#ifdef FIXED
|
#ifdef FIXED
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#define min(a,b) ((a) < (b) ? (a) : (b))
|
#define min(a,b) ((a) < (b) ? (a) : (b))
|
||||||
|
@ -13,8 +13,6 @@
|
|||||||
#include "char.h"
|
#include "char.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//#define NULL ((void *)0)
|
|
||||||
|
|
||||||
void FREE_RS(void *p){
|
void FREE_RS(void *p){
|
||||||
struct rs *rs = (struct rs *)p;
|
struct rs *rs = (struct rs *)p;
|
||||||
|
|
||||||
|
@ -5,6 +5,8 @@
|
|||||||
* May be used under the terms of the GNU Public License
|
* May be used under the terms of the GNU Public License
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
/* Select code here */
|
/* Select code here */
|
||||||
|
|
||||||
#define V213
|
#define V213
|
||||||
|
@ -18,8 +18,8 @@
|
|||||||
/* Rate 1/2 codes */
|
/* Rate 1/2 codes */
|
||||||
unsigned int Poly216[] = {0126723, 0152711}; /* k = 16 */
|
unsigned int Poly216[] = {0126723, 0152711}; /* k = 16 */
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
#include <memory.h>
|
#include <memory.h>
|
||||||
#define NULL ((void *)0)
|
|
||||||
|
|
||||||
#define LONGBITS 32
|
#define LONGBITS 32
|
||||||
#define LOGLONGBITS 5
|
#define LOGLONGBITS 5
|
||||||
|
Loading…
Reference in New Issue
Block a user