Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/symal
diff options
context:
space:
mode:
authorHieu Hoang <fishandfrolick@gmail.com>2013-06-10 21:11:55 +0400
committerHieu Hoang <fishandfrolick@gmail.com>2013-06-10 21:11:55 +0400
commitabe6bb7c2257cce6ed746e54fdd97fbf1f1ef3aa (patch)
tree5cff23f9434a2bd500ee55c4839e753cc119388c /symal
parent96d116dba09f4c29fbbfa1edd3d52a31a4b74b49 (diff)
refactor parsing of feature functiona args
Diffstat (limited to 'symal')
-rw-r--r--symal/cmd.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/symal/cmd.h b/symal/cmd.h
index 01a00abc0..a728dda78 100644
--- a/symal/cmd.h
+++ b/symal/cmd.h
@@ -33,14 +33,14 @@ extern "C" {
#endif
#if defined(__STDC__)
- int DeclareParams(char *, ...);
+int DeclareParams(char *, ...);
#else
- int DeclareParams();
+int DeclareParams();
#endif
- int GetParams(int *n, char ***a,char *CmdFileName),
- SPrintParams(),
- PrintParams();
+int GetParams(int *n, char ***a,char *CmdFileName),
+ SPrintParams(),
+ PrintParams();
#ifdef __cplusplus
}