Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3358 → Rev 3364

/trunk/uspace/app/bdsh/cmds/modules/cat/cat.c
81,7 → 81,7
return CMD_VOID;
}
 
unsigned int cat_file(const char *fname, size_t blen)
static unsigned int cat_file(const char *fname, size_t blen)
{
int fd, bytes = 0, count = 0, reads = 0;
off_t total = 0;
/trunk/uspace/app/bdsh/cmds/modules/cat/cat.h
3,7 → 3,7
 
/* Prototypes for the cat command, excluding entry points */
 
extern unsigned int cat_file(const char *, size_t);
static unsigned int cat_file(const char *, size_t);
 
#endif /* CAT_H */