I tried
\newcommand{\pathint}{\mathrel{\int\!\!\!\!\!\!\!\sim}}
It looks Ok, but it does not hold integration limits right.
I assume you're looking for a version of the Principal Value Integral symbol, but with the centered "dash" symbol replaced with a "tilde" or \sim. Building on some code given in an earlier answer, you could define a macro called \simint using the code given below.

\documentclass{article}
\def\Yint#1{\mathchoice
{\YYint\displaystyle\textstyle{#1}}%
{\YYint\textstyle\scriptstyle{#1}}%
{\YYint\scriptstyle\scriptscriptstyle{#1}}%
{\YYint\scriptscriptstyle\scriptscriptstyle{#1}}%
\!\int}
\def\YYint#1#2#3{{\setbox0=\hbox{$#1{#2#3}{\int}$}
\vcenter{\hbox{$#2#3$}}\kern-.52\wd0}}
\def\simint{\Yint\sim}
\begin{document}
$
\displaystyle
\simint_a^b f \quad
\simint\limits_a^b f \quad
\textstyle
\simint_a^b f
$
\end{document}
\sim symbol that crosses the \int symbol, you could change \textstyle{#1} to \scriptstyle{#1}, and \scriptstyle{#1} to \scriptscriptstyle{#1}, in the definition of the \Yint macro.
– Mico
Jan 01 '15 at 12:59
\documentclass{...}and ending with\end{document}. – cfr Jan 01 '15 at 03:16\oint, and other integration symbols from other packages given in the Comprehensive LaTeX Symbol List linked from cfr's comment. – Mike Renfro Jan 01 '15 at 03:22