Skip to content

include_emscripten #4664

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 25, 2016
Merged
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 system/include/emscripten/threading.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include <inttypes.h>
#include <pthread.h>
#include <html5.h>
#include <emscripten/html5.h>

#ifdef __cplusplus
extern "C" {
Expand Down
2 changes: 1 addition & 1 deletion system/include/emscripten/xmmintrin.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef __emscripten_xmmintrin_h__
#define __emscripten_xmmintrin_h__

#include <vector.h>
#include <emscripten/vector.h>

#include <math.h>
#include <string.h>
Expand Down
2 changes: 1 addition & 1 deletion tests/embind/embind_benchmark.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <stdio.h>
#include <emscripten.h>
#include <bind.h>
#include <emscripten/bind.h>
#include <memory>

int counter = 0;
Expand Down
2 changes: 1 addition & 1 deletion tests/emterpreter_async_iostream.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <iostream>
#include <emscripten.h>
#include <html5.h>
#include <emscripten/html5.h>

using namespace std;

Expand Down
2 changes: 1 addition & 1 deletion tests/keydown_preventdefault_proxy.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <stdio.h>
#include <emscripten.h>
#include <html5.h>
#include <emscripten/html5.h>
static int result = 1;

// The event handler functions can return 1 to suppress the event and disable the default action. That calls event.preventDefault();
Expand Down
2 changes: 1 addition & 1 deletion tests/sdl_togglefullscreen.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <SDL.h>
#include <emscripten.h>
#include <html5.h>
#include <emscripten/html5.h>

static enum {
STATE_INITIAL, /* Initial state, click needed to enter full screen */
Expand Down
2 changes: 1 addition & 1 deletion tests/webgl2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <string.h>
#include <assert.h>
#include <emscripten.h>
#include <html5.h>
#include <emscripten/html5.h>

EMSCRIPTEN_WEBGL_CONTEXT_HANDLE context;

Expand Down
2 changes: 1 addition & 1 deletion tests/webgl_create_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <string.h>
#include <assert.h>
#include <emscripten.h>
#include <html5.h>
#include <emscripten/html5.h>

std::vector<std::string> &split(const std::string &s, char delim, std::vector<std::string> &elems) {
std::stringstream ss(s);
Expand Down
2 changes: 1 addition & 1 deletion tests/webgl_destroy_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <string.h>
#include <assert.h>
#include <emscripten.h>
#include <html5.h>
#include <emscripten/html5.h>

int result = 0;
void report_result()
Expand Down