Skip to content
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

Use "buffer.h" instead of <openct/buffer.h> #73

Closed
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
Use "buffer.h" instead of <openct/buffer.h>
buffer.c should include buffer.h directly from current directory instead
of including it from system directory.
  • Loading branch information
godfreychung committed Aug 27, 2020
commit ae2053fed8ee0348e6dc51025dacc5c56b21d927
2 changes: 1 addition & 1 deletion src/openct/buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <string.h>
#endif

#include <openct/buffer.h>
#include "buffer.h"

void
ct_buf_init(ct_buf_t *bp, void *mem, size_t len)
Expand Down