changeset 913:9f2eb71d116d v4.4-rc2

include val.h instead of str.h Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Tue, 15 Aug 2017 23:13:31 +0300
parents 85c31697a99f
children 1b4fa50c8995
files comment.c daemon.c file_cache.c lisplint.c listing.h math.c math.h parse.h post_fmt3.l post_fmt3.y post_fmt3_cmds.c post_index.c post_nv.c static.h test_fmt3.c utils.h
diffstat 16 files changed, 11 insertions(+), 19 deletions(-) [+]
line wrap: on
line diff
--- a/comment.c	Tue Aug 15 18:26:28 2017 +0300
+++ b/comment.c	Tue Aug 15 23:13:31 2017 +0300
@@ -34,7 +34,6 @@
 #include <jeffpc/error.h>
 #include <jeffpc/atomic.h>
 #include <jeffpc/sexpr.h>
-#include <jeffpc/str.h>
 #include <jeffpc/io.h>
 #include <jeffpc/qstring.h>
 
--- a/daemon.c	Tue Aug 15 18:26:28 2017 +0300
+++ b/daemon.c	Tue Aug 15 23:13:31 2017 +0300
@@ -28,7 +28,6 @@
 #include <jeffpc/error.h>
 #include <jeffpc/atomic.h>
 #include <jeffpc/val.h>
-#include <jeffpc/str.h>
 #include <jeffpc/types.h>
 #include <jeffpc/scgisvc.h>
 
--- a/file_cache.c	Tue Aug 15 18:26:28 2017 +0300
+++ b/file_cache.c	Tue Aug 15 23:13:31 2017 +0300
@@ -28,7 +28,7 @@
 #include <stdbool.h>
 #include <port.h>
 
-#include <jeffpc/str.h>
+#include <jeffpc/val.h>
 #include <jeffpc/synch.h>
 #include <jeffpc/thread.h>
 #include <jeffpc/refcnt.h>
--- a/lisplint.c	Tue Aug 15 18:26:28 2017 +0300
+++ b/lisplint.c	Tue Aug 15 23:13:31 2017 +0300
@@ -25,7 +25,6 @@
 #include <jeffpc/jeffpc.h>
 #include <jeffpc/error.h>
 #include <jeffpc/sexpr.h>
-#include <jeffpc/str.h>
 #include <jeffpc/val.h>
 
 #include "utils.h"
--- a/listing.h	Tue Aug 15 18:26:28 2017 +0300
+++ b/listing.h	Tue Aug 15 23:13:31 2017 +0300
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011-2016 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
+ * Copyright (c) 2011-2017 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
@@ -25,7 +25,7 @@
 
 #include <stdlib.h>
 
-#include <jeffpc/str.h>
+#include <jeffpc/val.h>
 
 #include "post.h"
 #include "mangle.h"
--- a/math.c	Tue Aug 15 18:26:28 2017 +0300
+++ b/math.c	Tue Aug 15 23:13:31 2017 +0300
@@ -22,7 +22,7 @@
 
 #include <sha1.h>
 
-#include <jeffpc/str.h>
+#include <jeffpc/val.h>
 #include <jeffpc/synch.h>
 #include <jeffpc/error.h>
 #include <jeffpc/atomic.h>
--- a/math.h	Tue Aug 15 18:26:28 2017 +0300
+++ b/math.h	Tue Aug 15 23:13:31 2017 +0300
@@ -25,7 +25,7 @@
 
 #include <stdbool.h>
 
-#include <jeffpc/str.h>
+#include <jeffpc/val.h>
 
 extern void init_math(int fd);
 extern int render_math_processor(int fd);
--- a/parse.h	Tue Aug 15 18:26:28 2017 +0300
+++ b/parse.h	Tue Aug 15 23:13:31 2017 +0300
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012-2016 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
+ * Copyright (c) 2012-2017 Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
@@ -24,7 +24,6 @@
 #define __PARSE_H
 
 #include <jeffpc/error.h>
-#include <jeffpc/str.h>
 #include <jeffpc/sexpr.h>
 
 #include "req.h"
--- a/post_fmt3.l	Tue Aug 15 18:26:28 2017 +0300
+++ b/post_fmt3.l	Tue Aug 15 23:13:31 2017 +0300
@@ -29,8 +29,6 @@
 %{
 #include <stdlib.h>
 
-#include <jeffpc/str.h>
-
 #include "parse.h"
 
 #include "post_fmt3.tab.h"
--- a/post_fmt3.y	Tue Aug 15 18:26:28 2017 +0300
+++ b/post_fmt3.y	Tue Aug 15 23:13:31 2017 +0300
@@ -34,7 +34,6 @@
 #include <sys/stat.h>
 
 #include <jeffpc/error.h>
-#include <jeffpc/str.h>
 #include <jeffpc/types.h>
 
 #include "config.h"
--- a/post_fmt3_cmds.c	Tue Aug 15 18:26:28 2017 +0300
+++ b/post_fmt3_cmds.c	Tue Aug 15 23:13:31 2017 +0300
@@ -22,7 +22,7 @@
 
 #include <stdbool.h>
 
-#include <jeffpc/str.h>
+#include <jeffpc/val.h>
 #include <jeffpc/types.h>
 
 #include "config.h"
--- a/post_index.c	Tue Aug 15 18:26:28 2017 +0300
+++ b/post_index.c	Tue Aug 15 23:13:31 2017 +0300
@@ -24,7 +24,7 @@
 #include <stddef.h>
 #include <sys/sysmacros.h>
 
-#include <jeffpc/str.h>
+#include <jeffpc/val.h>
 #include <jeffpc/error.h>
 #include <jeffpc/mem.h>
 
--- a/post_nv.c	Tue Aug 15 18:26:28 2017 +0300
+++ b/post_nv.c	Tue Aug 15 23:13:31 2017 +0300
@@ -20,7 +20,7 @@
  * SOFTWARE.
  */
 
-#include <jeffpc/str.h>
+#include <jeffpc/val.h>
 #include <jeffpc/list.h>
 
 #include "iter.h"
--- a/static.h	Tue Aug 15 18:26:28 2017 +0300
+++ b/static.h	Tue Aug 15 23:13:31 2017 +0300
@@ -23,7 +23,7 @@
 #ifndef __STATIC_H
 #define __STATIC_H
 
-#include <jeffpc/str.h>
+#include <jeffpc/val.h>
 
 #include "req.h"
 
--- a/test_fmt3.c	Tue Aug 15 18:26:28 2017 +0300
+++ b/test_fmt3.c	Tue Aug 15 23:13:31 2017 +0300
@@ -24,7 +24,6 @@
 
 #include <jeffpc/jeffpc.h>
 #include <jeffpc/error.h>
-#include <jeffpc/str.h>
 #include <jeffpc/val.h>
 
 #include "parse.h"
--- a/utils.h	Tue Aug 15 18:26:28 2017 +0300
+++ b/utils.h	Tue Aug 15 23:13:31 2017 +0300
@@ -30,7 +30,7 @@
 
 #include <jeffpc/error.h>
 #include <jeffpc/int.h>
-#include <jeffpc/str.h>
+#include <jeffpc/val.h>
 #include <jeffpc/io.h>
 #include <jeffpc/time.h>