Re: [dev] sbase TODO patch
This message
: [
Message body
] [ More options (
top
,
bottom
) ]
Related messages
: [
Next message
] [
Previous message
] [
In reply to
] [
Next in thread
] [
Replies
]
Contemporary messages sorted
: [
by date
] [
by thread
] [
by subject
] [
by author
] [
by messages with attachments
]
From
: Truls Becken <
truls.becken_AT_gmail.com
>
Date
: Fri, 10 Feb 2012 10:50:05 +0100
On 2012-02-09, at 23:52, Connor Lane Smith wrote:
> const char *s = (argc < 2) ? "y" : argv[1];
> while(puts(s) != EOF);
On 2012-02-10, at 10:12, clamiax wrote:
>
http://cvsweb.netbsd.org/bsdweb.cgi/src/usr.bin/yes/yes.c?rev=1.8.22.1&content-type=text/x-cvsweb-markup
How about:
#include <stdio.h>
int
main(int argc, char **argv)
{
const char *s = (argc > 1) ? argv[1] : "y";
while(puts(s) != EOF);
return 1;
}
Received on
Fri Feb 10 2012 - 10:50:05 CET
This message
: [
Message body
]
Next message
:
Džen: "Re: [dev] sbase TODO patch"
Previous message
:
clamiax: "Re: [dev] sbase TODO patch"
In reply to
:
clamiax: "Re: [dev] sbase TODO patch"
Next in thread
:
Džen: "Re: [dev] sbase TODO patch"
Reply
:
Džen: "Re: [dev] sbase TODO patch"
Contemporary messages sorted
: [
by date
] [
by thread
] [
by subject
] [
by author
] [
by messages with attachments
]
This archive was generated by
hypermail 2.3.0
: Fri Feb 10 2012 - 11:00:05 CET