Changeset 3192 in kBuild for trunk/src/kmk/kmkbuiltin/cmp_extern.h
- Timestamp:
- Mar 26, 2018 8:25:56 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/kmkbuiltin/cmp_extern.h
r1309 r3192 36 36 #define ERR_EXIT 2 /* error exit code */ 37 37 38 int cmp_file_and_file( const char *file1, const char *file2, int sflag, int lflag, int special);39 int cmp_file_and_file_ex( const char *file1, off_t skip1,38 int cmp_file_and_file(PKMKBUILTINCTX pCtx, const char *file1, const char *file2, int sflag, int lflag, int special); 39 int cmp_file_and_file_ex(PKMKBUILTINCTX pCtx, const char *file1, off_t skip1, 40 40 const char *file2, off_t skip2, int sflag, int lflag, int special); 41 int cmp_fd_and_file( int fd1, const char *file1,41 int cmp_fd_and_file(PKMKBUILTINCTX pCtx, int fd1, const char *file1, 42 42 const char *file2, int sflag, int lflag, int special); 43 int cmp_fd_and_file_ex( int fd1, const char *file1, off_t skip1,43 int cmp_fd_and_file_ex(PKMKBUILTINCTX pCtx, int fd1, const char *file1, off_t skip1, 44 44 const char *file2, off_t skip2, int sflag, int lflag, int special); 45 int cmp_fd_and_fd( int fd1, const char *file1,45 int cmp_fd_and_fd(PKMKBUILTINCTX pCtx, int fd1, const char *file1, 46 46 int fd2, const char *file2, int sflag, int lflag, int special); 47 int cmp_fd_and_fd_ex( int fd1, const char *file1, off_t skip1,47 int cmp_fd_and_fd_ex(PKMKBUILTINCTX pCtx, int fd1, const char *file1, off_t skip1, 48 48 int fd2, const char *file2, off_t skip2, int sflag, int lflag, int special); 49 49
Note:
See TracChangeset
for help on using the changeset viewer.