Skip to content

Commit

Permalink
Added missing include for string.h
Browse files Browse the repository at this point in the history
  • Loading branch information
danij committed Mar 23, 2008
1 parent 3f29d68 commit 5a18f8a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doomsday/plugins/jdoom/src/d_api.c
Expand Up @@ -28,6 +28,8 @@

// HEADER FILES ------------------------------------------------------------

#include <string.h>

#include "jdoom.h"

#include "d_netsv.h"
Expand Down Expand Up @@ -133,7 +135,7 @@ void *G_GetVariable(int id)
* Takes a copy of the engine's entry points and exported data. Returns
* a pointer to the structure that contains our entry points and exports.
*/
game_export_t *GetGameAPI(game_import_t * imports)
game_export_t *GetGameAPI(game_import_t *imports)
{
// Take a copy of the imports, but only copy as much data as is
// allowed and legal.
Expand Down

0 comments on commit 5a18f8a

Please sign in to comment.