Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!zaphod.mps.ohio-state.edu!caen!uflorida!novavax!ankh!shark!terryb From: terryb.bbs@shark.cs.fau.edu (terry bohning) Newsgroups: comp.unix.questions Subject: Preprocessor Usage Question Message-ID: Date: 25 Apr 91 00:21:38 GMT Sender: bbs@cs.fau.edu (Waffle BBS) Organization: Florida Atlantic University Lines: 19 Here is a preprocessor question: I want to define a macro which will put either "a_" or "b_" in front of all my function names. Can it be done. That is, something like: #define RADIO a /* #define RADIO a or b */ main() { RADIO_func1(args); RADIO_func2(args); . . } Of course, this doesn't work, but I think you see what I would like to do. thanx tb