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 \
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);
<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" />
<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>
+++ /dev/null
-/* $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;
-}