| Index: ports/alut-demo/alut_hello_world.c
|
| diff --git a/ports/alut-demo/alut_hello_world.c b/ports/alut-demo/alut_hello_world.c
|
| index 60b46c27369059328c189506f5190e3ae459b6e7..0219eb6857c2d74ed034183e4d1f52045223bce0 100644
|
| --- a/ports/alut-demo/alut_hello_world.c
|
| +++ b/ports/alut-demo/alut_hello_world.c
|
| @@ -2,7 +2,6 @@
|
| #include <stdio.h>
|
| #include <AL/alut.h>
|
|
|
| -#include <ppapi_simple/ps_main.h>
|
| #include <ppapi/c/ppb.h>
|
|
|
| /*
|
| @@ -14,7 +13,7 @@
|
|
|
| void alSetPpapiInfo(PP_Instance instance, PPB_GetInterface get_interface);
|
|
|
| -int nacl_main(int argc, char** argv) {
|
| +int main(int argc, char** argv) {
|
| ALuint helloBuffer, helloSource;
|
|
|
| /*
|
| @@ -32,5 +31,3 @@ int nacl_main(int argc, char** argv) {
|
| alutExit();
|
| return EXIT_SUCCESS;
|
| }
|
| -
|
| -PPAPI_SIMPLE_REGISTER_MAIN(nacl_main)
|
|
|