]> granicus.if.org Git - graphviz/commitdiff
remove unused sfnotify()
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 10 Oct 2020 00:03:14 +0000 (17:03 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 16 Oct 2020 03:01:20 +0000 (20:01 -0700)
lib/sfio/Makefile.am
lib/sfio/sfio.h
lib/sfio/sfio.vcxproj
lib/sfio/sfio.vcxproj.filters
lib/sfio/sfnotify.c [deleted file]

index d89ed05338b7792db4abdc2de00ecb103d43b8b7..7190a07f1e6c9b833a66b84cf9305b30bee29de9 100644 (file)
@@ -11,7 +11,7 @@ noinst_LTLIBRARIES = libsfio_C.la
 libsfio_C_la_SOURCES = sfclose.c sfcvt.c sfdisc.c \
        sfexcept.c sfexit.c sfextern.c sffilbuf.c \
        sfflsbuf.c \
-       sfmode.c sfnew.c sfnotify.c \
+       sfmode.c sfnew.c \
        sfnputc.c sfopen.c sfpkrd.c sfpoll.c sfpool.c \
        sfprintf.c sfprints.c sfpurge.c \
        sfputr.c sfraise.c sfrd.c sfread.c \
index d0b703f2dd338e8b3b33e0496734341f152156c0..42df58ed0bccdafae8fcf2d0ed9150ccc8a2db56 100644 (file)
@@ -300,7 +300,6 @@ extern "C" {
     extern void *sfsetbuf(Sfio_t *, void *, size_t);
     extern Sfdisc_t *sfdisc(Sfio_t *, Sfdisc_t *);
     extern int sfraise(Sfio_t *, int, void *);
-    extern int sfnotify(void (*)(Sfio_t *, int, int));
     extern int sfset(Sfio_t *, int, int);
     extern int sfsetfd(Sfio_t *, int);
     extern Sfio_t *sfpool(Sfio_t *, Sfio_t *, int);
index 740cd9541e3591e86e0e9d0d16ec600e079c0a2c..7101d882b304afce59786d54fb6a25858a1b80c5 100644 (file)
@@ -96,7 +96,6 @@
     <ClCompile Include="sfio_f\_sfslen.c" />
     <ClCompile Include="sfmode.c" />
     <ClCompile Include="sfnew.c" />
-    <ClCompile Include="sfnotify.c" />
     <ClCompile Include="sfnputc.c" />
     <ClCompile Include="sfopen.c" />
     <ClCompile Include="sfpkrd.c" />
index 395a320958b658d3dc11e31f0c95f9bc23a43d6a..06bd694973c9f6731a3620ae4477da4c155210a8 100644 (file)
@@ -71,9 +71,6 @@
     <ClCompile Include="sfnew.c">
       <Filter>Source Files</Filter>
     </ClCompile>
-    <ClCompile Include="sfnotify.c">
-      <Filter>Source Files</Filter>
-    </ClCompile>
     <ClCompile Include="sfnputc.c">
       <Filter>Source Files</Filter>
     </ClCompile>
diff --git a/lib/sfio/sfnotify.c b/lib/sfio/sfnotify.c
deleted file mode 100644 (file)
index 2f9f865..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-/* $Id$ $Revision$ */
-/* vim:set shiftwidth=4 ts=8: */
-
-/*************************************************************************
- * Copyright (c) 2011 AT&T Intellectual Property 
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors: See CVS logs. Details at http://www.graphviz.org/
- *************************************************************************/
-
-#include       <sfio/sfhdr.h>
-
-
-/*     Set the function to be called when a stream is opened or closed
-**
-**     Written by Kiem-Phong Vo.
-*/
-int sfnotify(void (*notify) (Sfio_t *, int, int))
-{
-    _Sfnotify = notify;
-    return 0;
-}