citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit ced79203f09486224f8aed377b94268785084733
parent 77dbd7b8d14995fab83f203b59825bbd34e4f557
Author: Kyle Milz <kyle@0x30.net>
Date:   Sat, 21 Jan 2017 22:45:45 -0700

lib: make private lib header name better

Diffstat:
Mlib.c | 2+-
Rlib_os.h -> libP.h | 0
Mlib_unix.c | 2+-
Mlib_win32.c | 2+-
4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib.c b/lib.c @@ -17,7 +17,7 @@ #include <stdio.h> /* fprintf, stderr */ #include <string.h> /* strncpy */ -#include "lib_os.h" /* lib.h, extend, open_fd */ +#include "libP.h" /* lib.h, extend, open_fd */ static int init; diff --git a/lib_os.h b/libP.h diff --git a/lib_unix.c b/lib_unix.c @@ -25,7 +25,7 @@ #include <string.h> /* strl{cpy,cat} */ #include <unistd.h> /* lseek get{cwd,pid,ppid,pgrp} */ -#include "lib_os.h" +#include "libP.h" static int fd; diff --git a/lib_win32.c b/lib_win32.c @@ -19,7 +19,7 @@ #include <io.h> #define PATH_MAX 32000 -#include "lib_os.h" +#include "libP.h" static HANDLE h = INVALID_HANDLE_VALUE;