Not compiling copy because of a silly linker problem on the mac

This commit is contained in:
Tee Teoh
2008-06-02 16:43:16 -04:00
commit 91ff5f6a88
5 changed files with 220 additions and 0 deletions

8
priv/erl_comm.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef _ERL_COMM_H
#define _ERL_COMM_H
typedef unsigned char byte;
int read_cmd(byte *buf);
int write_cmd(byte *buf, int len);
#endif