[vlc-devel] commit: Mention which standard replacements follow ( Rémi Denis-Courmont )

git version control git at videolan.org
Fri Apr 10 21:19:32 CEST 2009


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Fri Apr 10 22:12:30 2009 +0300| [003bdf4a18bdecead548e100d3d24dd6d3eed723] | committer: Rémi Denis-Courmont 

Mention which standard replacements follow

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=003bdf4a18bdecead548e100d3d24dd6d3eed723
---

 compat/asprintf.c  |    2 +-
 compat/atof.c      |    2 +-
 compat/atoll.c     |    2 +-
 compat/lldiv.c     |    2 +-
 compat/strdup.c    |    2 +-
 compat/strlcpy.c   |    2 +-
 compat/strndup.c   |    2 +-
 compat/strnlen.c   |    2 +-
 compat/strsep.c    |    2 +-
 compat/strtof.c    |    2 +-
 compat/strtoll.c   |    2 +-
 compat/vasprintf.c |    2 +-
 12 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/compat/asprintf.c b/compat/asprintf.c
index e3b319d..a790be3 100644
--- a/compat/asprintf.c
+++ b/compat/asprintf.c
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * asprintf.c: asprintf() replacement
+ * asprintf.c: GNU asprintf() replacement
  *****************************************************************************
  * Copyright © 1998-2008 the VideoLAN project
  *
diff --git a/compat/atof.c b/compat/atof.c
index c658dc6..c0723d3 100644
--- a/compat/atof.c
+++ b/compat/atof.c
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * atof.c: atof replacement
+ * atof.c: C atof() replacement
  *****************************************************************************
  * Copyright © 1998-2008 the VideoLAN project
  *
diff --git a/compat/atoll.c b/compat/atoll.c
index 6c6a347..55be94c 100644
--- a/compat/atoll.c
+++ b/compat/atoll.c
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * atoll.c: atoll replacement
+ * atoll.c: C atoll() replacement
  *****************************************************************************
  * Copyright © 1998-2008 the VideoLAN project
  *
diff --git a/compat/lldiv.c b/compat/lldiv.c
index 25f4abc..2eff559 100644
--- a/compat/lldiv.c
+++ b/compat/lldiv.c
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * lldiv.c: lldiv replacement
+ * lldiv.c: C lldiv() replacement
  *****************************************************************************
  * Copyright © 1998-2008 the VideoLAN project
  *
diff --git a/compat/strdup.c b/compat/strdup.c
index 7e3765c..5ad7cc6 100644
--- a/compat/strdup.c
+++ b/compat/strdup.c
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * strdup.c: strdup replacement
+ * strdup.c: POSIX strdup() replacement
  *****************************************************************************
  * Copyright © 1998-2008 the VideoLAN project
  *
diff --git a/compat/strlcpy.c b/compat/strlcpy.c
index bc815ea..0740a65 100644
--- a/compat/strlcpy.c
+++ b/compat/strlcpy.c
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * strlcpy.c: BSD strlcpy replacement
+ * strlcpy.c: BSD strlcpy() replacement
  *****************************************************************************
  * Copyright © 2006 Rémi Denis-Courmont
  *
diff --git a/compat/strndup.c b/compat/strndup.c
index 863b075..4f4f440 100644
--- a/compat/strndup.c
+++ b/compat/strndup.c
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * strndup.c: strndup replacement
+ * strndup.c: POSIX strndup() replacement
  *****************************************************************************
  * Copyright © 1998-2008 the VideoLAN project
  *
diff --git a/compat/strnlen.c b/compat/strnlen.c
index 96be3d2..66c64df 100644
--- a/compat/strnlen.c
+++ b/compat/strnlen.c
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * strnlen.c: strnlen replacement
+ * strnlen.c: POSIX strnlen() replacement
  *****************************************************************************
  * Copyright © 1998-2008 the VideoLAN project
  *
diff --git a/compat/strsep.c b/compat/strsep.c
index 1163f46..abee3d7 100644
--- a/compat/strsep.c
+++ b/compat/strsep.c
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * strsep.c: BSD strsep replacement
+ * strsep.c: BSD strsep() replacement
  *****************************************************************************
  * Copyright © 1998-2008 the VideoLAN project
  *
diff --git a/compat/strtof.c b/compat/strtof.c
index 807db0e..1300da7 100644
--- a/compat/strtof.c
+++ b/compat/strtof.c
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * strtof.c: strtof replacement
+ * strtof.c: C strtof() replacement
  *****************************************************************************
  * Copyright © 1998-2008 the VideoLAN project
  *
diff --git a/compat/strtoll.c b/compat/strtoll.c
index 1f0a71d..8d2e0bc 100644
--- a/compat/strtoll.c
+++ b/compat/strtoll.c
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * strtoll.c: strtoll replacement
+ * strtoll.c: C strtoll() replacement
  *****************************************************************************
  * Copyright © 1998-2008 the VideoLAN project
  *
diff --git a/compat/vasprintf.c b/compat/vasprintf.c
index 98d7e72..8ead2d1 100644
--- a/compat/vasprintf.c
+++ b/compat/vasprintf.c
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * vasprintf.c: vasprintf replacement
+ * vasprintf.c: GNU vasprintf() replacement
  *****************************************************************************
  * Copyright © 1998-2008 the VideoLAN project
  *




More information about the vlc-devel mailing list