Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Dukboot
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
dukboot
Dukboot
Commits
a5e817c1
Unverified
Commit
a5e817c1
authored
May 19, 2017
by
Will Hilton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove that one static qualifier because it's bound to bite me in the ass eventually
parent
9a269b2c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/autogenerated.h
src/autogenerated.h
+1
-1
src/native_print.c
src/native_print.c
+1
-1
No files found.
src/autogenerated.h
View file @
a5e817c1
...
...
@@ -13,7 +13,7 @@ void app_unstash_global_string(duk_context *ctx, char *name);
char
*
c_join_paths
(
const
char
*
base
,
const
char
*
filename
);
int
c_read_script_file
(
const
char
*
joined_path
,
char
**
message
,
char
**
buffer
,
size_t
*
bytesRead
);
int
native_import
(
duk_context
*
ctx
,
const
char
*
filename
);
static
duk_ret_t
native_print
(
duk_context
*
ctx
);
duk_ret_t
native_print
(
duk_context
*
ctx
);
int
queue_create
(
duk_context
*
ctx
,
char
*
name
);
int
queue_push_queue
(
duk_context
*
ctx
,
char
*
name
);
...
...
src/native_print.c
View file @
a5e817c1
static
duk_ret_t
native_print
(
duk_context
*
ctx
)
{
duk_ret_t
native_print
(
duk_context
*
ctx
)
{
duk_push_string
(
ctx
,
" "
);
duk_insert
(
ctx
,
0
);
duk_join
(
ctx
,
duk_get_top
(
ctx
)
-
1
);
...
...
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