]> git.ipfire.org Git - thirdparty/cups.git/blob - test/ippproxy.c
Remove all of the Subversion keywords from various source files.
[thirdparty/cups.git] / test / ippproxy.c
1 /*
2 * CUPS Cloud Proxy for HP PCL and IPP Everywhere printers.
3 *
4 * Copyright 2014 by Apple Inc.
5 */
6
7 #include <cups/cups.h>
8
9
10 /*
11 * 'main()' - Main entry for cupsproxy.
12 */
13
14 int /* O - Exit status */
15 main(int argc, /* I - Number of command-line arguments */
16 char *argv[]) /* I - Command-line arguments */
17 {
18 (void)argc;
19 (void)argv;
20
21 return (0);
22 }