Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
91aaff25
Commit
91aaff25
authored
Feb 28, 2023
by
alanminko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More compiler warnings.
parent
667326b1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
4 deletions
+7
-4
.gitignore
+1
-0
src/base/main/mainUtils.c
+1
-1
src/map/mapper/mapperLib.c
+2
-1
src/map/mio/mio.c
+2
-1
src/opt/dau/dauMerge.c
+1
-1
No files found.
.gitignore
View file @
91aaff25
...
...
@@ -11,6 +11,7 @@ lib/abc*
lib/m114*
lib/bip*
docs/
.vscode/
src/ext*
src/xxx/
...
...
src/base/main/mainUtils.c
View file @
91aaff25
...
...
@@ -261,7 +261,7 @@ void Abc_UtilsSource( Abc_Frame_t * pAbc )
******************************************************************************/
char
*
DateReadFromDateString
(
char
*
datestr
)
{
static
char
result
[
25
];
static
char
result
[
100
];
char
day
[
10
];
char
month
[
10
];
char
zone
[
10
];
...
...
src/map/mapper/mapperLib.c
View file @
91aaff25
...
...
@@ -15,9 +15,10 @@
Revision [$Id: mapperLib.c,v 1.6 2005/01/23 06:59:44 alanmi Exp $]
***********************************************************************/
#define _BSD_SOURCE
//
#define _BSD_SOURCE
#ifndef WIN32
#define _DEFAULT_SOURCE
#include <unistd.h>
#endif
...
...
src/map/mio/mio.c
View file @
91aaff25
...
...
@@ -16,9 +16,10 @@
***********************************************************************/
#define _BSD_SOURCE
//
#define _BSD_SOURCE
#ifndef WIN32
#define _DEFAULT_SOURCE
#include <unistd.h>
#endif
...
...
src/opt/dau/dauMerge.c
View file @
91aaff25
...
...
@@ -48,7 +48,7 @@ typedef struct Dau_Sto_t_ Dau_Sto_t;
struct
Dau_Sto_t_
{
int
iVarUsed
;
// counter of used variables
char
pOutput
[
DAU_MAX_STR
];
// storage for reduced function
char
pOutput
[
2
*
DAU_MAX_STR
+
10
];
// storage for reduced function
char
*
pPosOutput
;
// place in the output
char
pStore
[
DAU_MAX_VAR
][
DAU_MAX_STR
];
// storage for definitions
char
*
pPosStore
[
DAU_MAX_VAR
];
// place in the store
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment