Skip to content

Commit

Permalink
uhhh
Browse files Browse the repository at this point in the history
  • Loading branch information
amagura committed Apr 18, 2015
1 parent 7b7341b commit 687bccf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion common.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,13 @@ the end of C declarations. */
BEGIN_C_DECLS

#include <stdio.h>
#include <string.h>

# if 0
void *memset PARAMS((void *s, int c, size_t n));
void *memcpy PARAMS((void *dest, const void *src, size_t n));
# else
# include <string.h>
# endif

# ifndef COM_DEBUG
# define COM_DEBUG 1 // XXX change this to turn debug messages on/off
Expand Down
1 change: 1 addition & 0 deletions test.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "common.h"

int test_catl()
Expand Down

0 comments on commit 687bccf

Please sign in to comment.