blob: 5a07c14b6fb3e4bbbc914f243312405df65cddb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
--- sounds/mkdtmf.c.orig 2001-09-21 21:37:37.000000000 +0200
+++ sounds/mkdtmf.c 2004-02-17 17:22:40.781403496 +0200
@@ -25,19 +25,18 @@
if (argc != 3)
exit(1);
- printf(
-"/*
- * Signed 16-bit audio data representing '%s' in dtmf
- *
- * Copyright (C) 2000, Linux Support Services, Inc.
- *
- * Distributed under the terms of the GNU General
- * Public License
- *
- */
-
-static short %s[] = {
-", argv[1], argv[2]);
+ printf("/* \n"
+ " * Signed 16-bit audio data representing '%s' in dtmf\n"
+ " * \n"
+ " * Copyright (C) 2000, Linux Support Services, Inc.\n"
+ " * \n"
+ " * Distributed under the terms of the GNU General\n"
+ " * Public License\n"
+ " *\n"
+ " */\n"
+ "\n"
+ "static short %s[] = { \n",
+ argv[1], argv[2]);
ap = argv[1];
while (*ap) {
|