/* * Copyright (c) 2002 Sendmail, Inc. and its suppliers. * All rights reserved. * * By using this file, you agree to the terms and conditions set * forth in the LICENSE file which can be found at the top level of * the sendmail distribution. */ #include "sm/generic.h" SM_IDSTR(id, "@(#)$Id: yes.c,v 1.2 2005/08/22 05:55:20 ca Exp $") #include int main(int argc, char *argv[]) { for(;;) puts((argc > 1) ? argv[1] : "y"); /* NOTREACHED */ return 0; }