]> git.ipfire.org Git - thirdparty/cups.git/blame - test/ippproxy.c
Use SVN revision instead of date, when possible.
[thirdparty/cups.git] / test / ippproxy.c
CommitLineData
92ee0d7c
MS
1/*
2 * "$Id$"
3 *
4 * CUPS Cloud Proxy for HP PCL and IPP Everywhere printers.
5 *
6 * Copyright 2014 by Apple Inc.
7 */
8
9#include <cups/cups.h>
10
11
12/*
13 * 'main()' - Main entry for cupsproxy.
14 */
15
16int /* O - Exit status */
17main(int argc, /* I - Number of command-line arguments */
18 char *argv[]) /* I - Command-line arguments */
19{
20 (void)argc;
21 (void)argv;
22
23 return (0);
24}
25
26
27/*
28 * End of "$Id$".
29 */