/* $NetBSD: msg_046.c,v 1.6 2023/03/28 14:44:34 rillig Exp $ */ # 3 "msg_046.c" // Test for message: %s tag '%s' redeclared as %s [46] /* lint1-extra-flags: -X 351 */ /* expect+1: warning: struct 'tag1' never defined [233] */ struct tag1; /* expect+2: error: struct tag 'tag1' redeclared as union [46] */ /* expect+1: warning: union 'tag1' never defined [234] */ union tag1; /* expect+1: warning: union 'tag2' never defined [234] */ union tag2; /* expect+2: error: union tag 'tag2' redeclared as enum [46] */ /* expect+1: warning: enum 'tag2' never defined [235] */ enum tag2; /* expect+1: warning: enum 'tag3' never defined [235] */ enum tag3; /* expect+2: error: enum tag 'tag3' redeclared as struct [46] */ /* expect+1: warning: struct 'tag3' never defined [233] */ struct tag3; /* expect+2: error: union tag 'tag1' redeclared as struct [46] */ /* expect+1: warning: struct 'tag1' never defined [233] */ struct tag1 *use_tag1(void); /* expect+2: error: enum tag 'tag2' redeclared as union [46] */ /* expect+1: warning: union 'tag2' never defined [234] */ union tag2 *use_tag2(void); /* expect+2: error: struct tag 'tag3' redeclared as enum [46] */ /* expect+1: warning: enum 'tag3' never defined [235] */ enum tag3 *use_tag3(void); /* expect+2: error: struct tag 'tag1' redeclared as union [46] */ /* expect+1: warning: union 'tag1' never defined [234] */ union tag1 *mismatch_tag1(void); /commit/usr.bin/split/split.c?h=lockcount-9.3'>commitdiff
path: root/usr.bin/split/split.c
AgeCommit message (Expand)Author
2017-01-10needs <sys/stat.h>christos
2011-09-16Use __deadjoerg
2009-04-13Appease -Wsign-comparelukem
2008-07-21Remove the \n and tabs from the __COPYRIGHT() strings.lukem
2007-12-15convert __attribute__s to applicable cdefs.h macrosperry
2007-05-31Add a new command-line option "-n chunk_count", that splits the inputjschauma
2004-01-05Homogenize usage messages: make the 'usage' word all lowercase, as this seemsjmmv
2003-08-07Move UCB-licensed code from 4-clause to 3-clause licence.agc
2003-07-10Remove the NAME_MAX check. While well-intentioned (and required by POSIX),bjh21
2003-07-10Remove the hack that varied the first character of the output filename ifbjh21
2003-06-29Clean up the mechanism used for opening output files. Rather than freopeningbjh21
2003-06-26Simplify the handling of ifd by initialising it to the defaultbjh21
2003-06-26Remove support for treating "-" as an option rather than an operand. Thebjh21
2003-06-26Delint. This largely involves using size_t and off_t appropriately ratherbjh21
2003-06-24Light KNF and comment tidying.bjh21
2003-06-24Use pathconf() to get the value of {NAME_MAX} for the current directory,bjh21
2003-06-10From FreeBSD:bjh21
2003-06-10Add support for the -a option, which should fix standards/11226.bjh21
2003-03-20PR/20818: Martin Husemann: Split does not handle >= 2G files.christos